From: ivan Date: Wed, 22 Sep 2010 20:46:38 +0000 (+0000) Subject: use Data::Dumper to fix debugging - hopefully last of fallout from refactoring things... X-Git-Tag: TORRUS_1_0_9~281 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=197c503fbe112896332e9ca5f17c9c5a2ea4bb87 use Data::Dumper to fix debugging - hopefully last of fallout from refactoring things into their own fiels --- diff --git a/FS/FS/cust_main/Billing.pm b/FS/FS/cust_main/Billing.pm index 3ebc87da3..37eae8c71 100644 --- a/FS/FS/cust_main/Billing.pm +++ b/FS/FS/cust_main/Billing.pm @@ -3,6 +3,7 @@ package FS::cust_main::Billing; use strict; use vars qw( $conf $DEBUG $me ); use Carp; +use Data::Dumper; use List::Util qw( min ); use FS::UID qw( dbh ); use FS::Record qw( qsearch qsearchs dbdef ); @@ -628,6 +629,7 @@ jurisdictions (i.e. Texas) have tax exemptions which are date sensitive. =back =cut + sub calculate_taxes { my ($self, $cust_bill_pkg, $taxlisthash, $invoice_time) = @_; diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm index 4a9d2c685..60554957b 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -3,6 +3,7 @@ package FS::cust_main::Billing_Realtime; use strict; use vars qw( $conf $DEBUG $me ); use vars qw( $realtime_bop_decline_quiet ); #ugh +use Data::Dumper; use Digest::MD5 qw(md5_base64); use Business::CreditCard 0.28; use FS::UID qw( dbh );