From: ivan Date: Fri, 9 Nov 2007 19:20:10 +0000 (+0000) Subject: add business-onlinepayment-email_customer flag X-Git-Tag: TRIXBOX_2_6~240 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=1737abc0d3f9e5b615e833af0f2a7afd59f876e8 add business-onlinepayment-email_customer flag --- diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 030799acf..0ad12c135 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -615,6 +615,13 @@ worry that config_items is freeside-specific and icky. }, { + 'key' => 'business-onlinepayment-email_customer', + 'section' => 'billing', + 'description' => 'Controls the "email_customer" flag used by some Business::OnlinePayment processors to enable customer receipts.', + 'type' => 'checkbox', + }, + + { 'key' => 'countrydefault', 'section' => 'UI', 'description' => 'Default two-letter country code (if not supplied, the default is `US\')', diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index ff40cfe83..fa908bf2c 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -3026,6 +3026,10 @@ sub realtime_bop { $content{invoice_number} = $options{'invnum'} if exists($options{'invnum'}) && length($options{'invnum'}); + $content{email_customer} = + ( $conf->exists('business-onlinepayment-email_customer') + || $conf->exists('business-onlinepayment-email-override') ); + my $paydate = ''; if ( $method eq 'CC' ) {