diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/cust_main/payment_history.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/view/cust_main/payment_history.html b/httemplate/view/cust_main/payment_history.html index db01ebbcf..6c475c5f2 100644 --- a/httemplate/view/cust_main/payment_history.html +++ b/httemplate/view/cust_main/payment_history.html @@ -118,14 +118,14 @@ foreach my $cust_pay ($cust_main->cust_pay) { my $void = ''; if ( $cust_pay->closed !~ /^Y/i - && $cust_pay->payby ne 'CARD' + && ( $cust_pay->payby ne 'CARD' || $conf->exists('cc-void') ) && ( $cust_pay->payby ne 'CHEK' || $conf->exists('echeck-void') ) ) { $void = qq! (<A HREF="javascript:areyousure('!. qq!${p}misc/void-cust_pay.cgi?!. $cust_pay->paynum. qq!', 'Are you sure you want to void this payment?')"!. qq! TITLE="Void this payment from the database!. - ( $cust_pay->payby eq 'CHEK' + ( $cust_pay->payby =~ /^(CARD|CHEK)$/ ? ' (do not send anything to the payment gateway)' : '' ). '"'. |