From 1737abc0d3f9e5b615e833af0f2a7afd59f876e8 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 9 Nov 2007 19:20:10 +0000 Subject: [PATCH] add business-onlinepayment-email_customer flag --- FS/FS/Conf.pm | 7 +++++++ FS/FS/cust_main.pm | 4 ++++ 2 files changed, 11 insertions(+) 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' ) { -- 2.11.0