add business-onlinepayment-email_customer flag
authorivan <ivan>
Fri, 9 Nov 2007 19:20:10 +0000 (19:20 +0000)
committerivan <ivan>
Fri, 9 Nov 2007 19:20:10 +0000 (19:20 +0000)
FS/FS/Conf.pm
FS/FS/cust_main.pm

index 030799a..0ad12c1 100644 (file)
@@ -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\')',
index ff40cfe..fa908bf 100644 (file)
@@ -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' ) {