From d190275909c4bbcd6f69c6163800765760d27503 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 1 Nov 2005 05:27:22 +0000 Subject: [PATCH 1/1] only send to specific destinations, oops! --- FS/FS/cust_bill.pm | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index f353ea84c..c1724afe6 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -822,13 +822,25 @@ Spools CSV invoice data. Options are: -format - 'default' or 'billco' +=over 4 + +=item format - 'default' or 'billco' + +=item dest - if set (to POST, EMAIL or FAX), only sends spools invoices if the customer has the corresponding invoice destinations set (see L). + +=back =cut sub spool_csv { my($self, %opt) = @_; + if ( $opt{'dest'} ) { + my %invoicing_list = map { /^(POST|FAX)$/ or $1 = 'EMAIL'; $1 => 1 } + $self->cust_main->invoicing_list; + return unless $invoicing_list{$opt{'dest'}}; + } + #create file(s) my $spooldir = "/usr/local/etc/freeside/export.". datasrc. "/cust_bill"; @@ -1010,7 +1022,8 @@ sub print_csv { $taxtotal += $_->{'amount'} foreach $self->_items_tax; my $duedate = ''; - if ( $conf->config('invoice_default_terms') =~ /^\s*Net\s*(\d+)\s*$/ ) { + if ( $conf->exists('invoice_default_terms') + && $conf->config('invoice_default_terms')=~ /^\s*Net\s*(\d+)\s*$/ ) { $duedate = time2str("%m/%d/%Y", $self->_date + ($1*86400) ); } -- 2.11.0