[freeside-commits] freeside/FS/FS/cust_main Packages.pm, 1.2, 1.3 Billing.pm, 1.8, 1.9 Billing_Realtime.pm, 1.8, 1.9
Ivan,,,
ivan at wavetail.420.am
Thu Sep 23 10:55:17 PDT 2010
Update of /home/cvs/cvsroot/freeside/FS/FS/cust_main
In directory wavetail.420.am:/tmp/cvs-serv20347
Modified Files:
Packages.pm Billing.pm Billing_Realtime.pm
Log Message:
honor cust_main DEBUG flag, add some additional debug info, RT#10012
Index: Billing_Realtime.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main/Billing_Realtime.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -d -r1.8 -r1.9
--- Billing_Realtime.pm 23 Sep 2010 17:46:48 -0000 1.8
+++ Billing_Realtime.pm 23 Sep 2010 17:55:15 -0000 1.9
@@ -89,7 +89,7 @@
sub realtime_collect {
my( $self, %options ) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
if ( $DEBUG ) {
warn "$me realtime_collect:\n";
@@ -289,7 +289,7 @@
sub realtime_bop {
my $self = shift;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my %options = ();
if (ref($_[0]) eq 'HASH') {
@@ -717,7 +717,7 @@
sub _realtime_bop_result {
my( $self, $cust_pay_pending, $transaction, %options ) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
if ( $DEBUG ) {
warn "$me _realtime_bop_result: pending transaction ".
@@ -1000,7 +1000,7 @@
sub realtime_botpp_capture {
my( $self, $cust_pay_pending, %options ) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
if ( $DEBUG ) {
warn "$me realtime_botpp_capture: pending transaction $cust_pay_pending\n";
@@ -1157,7 +1157,7 @@
sub realtime_refund_bop {
my $self = shift;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my %options = ();
if (ref($_[0]) eq 'HASH') {
Index: Billing.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main/Billing.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -w -d -r1.8 -r1.9
--- Billing.pm 23 Sep 2010 17:46:48 -0000 1.8
+++ Billing.pm 23 Sep 2010 17:55:15 -0000 1.9
@@ -309,7 +309,7 @@
return '' if $self->payby eq 'COMP';
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me bill customer ". $self->custnum. "\n"
if $DEBUG;
@@ -641,7 +641,7 @@
sub calculate_taxes {
my ($self, $cust_bill_pkg, $taxlisthash, $invoice_time) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me calculate_taxes\n".
Dumper($self, $cust_bill_pkg, $taxlisthash, $invoice_time). "\n"
@@ -786,7 +786,7 @@
sub _make_lines {
my ($self, %params) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my $part_pkg = $params{part_pkg} or die "no part_pkg specified";
my $cust_pkg = $params{cust_pkg} or die "no cust_pkg specified";
@@ -1029,7 +1029,7 @@
my $real_pkgpart = shift;
my $options = shift;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my %cust_bill_pkg = ();
my %taxes = ();
@@ -1228,7 +1228,7 @@
my $part_pkg = shift;
my $class = shift;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my @taxes = ();
my $geocode = $self->geocode('cch');
@@ -1310,7 +1310,7 @@
sub collect {
my( $self, %options ) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my $invoice_time = $options{'invoice_time'} || time;
@@ -1496,7 +1496,7 @@
sub do_cust_event {
my( $self, %options ) = @_;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
my $time = $options{'time'} || time;
@@ -1711,7 +1711,7 @@
my $self = shift;
my $term = shift;
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me discount_term_values called with $term\n" if $DEBUG;
@@ -1805,7 +1805,7 @@
#my $DEBUG = $opt{'debug'}
local($DEBUG) = $opt{'debug'}
if defined($opt{'debug'}) && $opt{'debug'} > $DEBUG;
- $DEBUG = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ $DEBUG = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me due_cust_event called with options ".
join(', ', map { "$_: $opt{$_}" } keys %opt). "\n"
Index: Packages.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main/Packages.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -d -r1.2 -r1.3
--- Packages.pm 23 Sep 2010 17:46:48 -0000 1.2
+++ Packages.pm 23 Sep 2010 17:55:15 -0000 1.3
@@ -69,7 +69,7 @@
my $self = shift;
my $opt = ref($_[0]) ? shift : { @_ };
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me order_pkg called with options ".
join(', ', map { "$_: $opt->{$_}" } keys %$opt ). "\n"
@@ -189,7 +189,7 @@
my %options = @_;
$seconds_ref ||= $options{'seconds_ref'};
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
warn "$me order_pkgs called with options ".
join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
@@ -271,7 +271,7 @@
my $self = shift;
my $extra_qsearch = ref($_[0]) ? shift : {};
- local($DEBUG) = $cust_main::DEBUG if $cust_main::DEBUG > $DEBUG;
+ local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
return $self->num_ncancelled_pkgs unless wantarray;
More information about the freeside-commits
mailing list