don't apply credit-card-surcharge-percentage to ACH, RT#34815
authorIvan Kohler <ivan@freeside.biz>
Thu, 21 May 2015 20:07:23 +0000 (13:07 -0700)
committerIvan Kohler <ivan@freeside.biz>
Thu, 21 May 2015 20:07:23 +0000 (13:07 -0700)
httemplate/misc/payment.cgi

index 12fca20..a48aa01 100644 (file)
        'process-display'    => scalar($conf->config('manual_process-display')),
        'process-skip_first' => $conf->exists('manual_process-skip_first'),
        'num_payments'       => scalar($cust_main->cust_pay), 
-       'surcharge_percentage' => scalar($conf->config('credit-card-surcharge-percentage')),
+       'surcharge_percentage' =>
+         ( $payby eq 'CARD'
+             ? scalar($conf->config('credit-card-surcharge-percentage'))
+             : 0
+         ),
   &>
 
 % if ( $conf->exists('part_pkg-term_discounts') ) {