X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Fpayment.html;h=eeddc47b14ccb68cf27c09c6a1f4d3a2b402831c;hb=6f08493827f30fe18fd99c32bbb1625b064017ec;hp=f65c903ba77e535c32f3127f283ec90010f47a0e;hpb=7de0e4d649d2c9930720363c858f64b4f2f62efc;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/payment.html b/httemplate/view/cust_main/payment_history/payment.html index f65c903ba..eeddc47b1 100644 --- a/httemplate/view/cust_main/payment_history/payment.html +++ b/httemplate/view/cust_main/payment_history/payment.html @@ -103,7 +103,8 @@ if ($unapplied > 0) { if ( $opt{total_unapplied_refunds} > 0 ) { $apply.= ' ('. include( '/elements/popup_link.html', - 'label' => emt('apply').' '.emt('refund'), + 'label' => emt('apply refund'), + 'style' => 'white-space: nowrap', 'action' => "${p}edit/cust_pay_refund.cgi?". $cust_pay->paynum, 'actionlabel' => emt('Apply payment to refund'), @@ -177,19 +178,21 @@ if ( $cust_pay->closed !~ /^Y/i qq! TITLE="! . $refundtitle . '">' . emt('refund') . ')'; } +$refund = '' if ($cust_pay->batchnum && !FS::pay_batch->can_handle_electronic_refunds); my $void = ''; -# note: "TOKN" is not yet supported in stock freeside -my $voidmsg = $cust_pay->payby =~ /^(CARD|CHEK|TOKN)$/ +my $voidmsg = $cust_pay->payby =~ /^(CARD|CHEK)$/ ? ' (' . emt('do not send anything to the payment gateway').')' : ''; $void = ' ('. - include( '/elements/popup_link.html', - 'label' => emt('void'), - 'action' => "${p}misc/void-cust_pay.html?".$cust_pay->paynum, - 'actionlabel' => emt('Void payment'), - ). - ')' + include( '/elements/popup_link.html', + 'label' => emt('void'), + 'action' => "${p}misc/void-cust_pay.html?".$cust_pay->paynum, + 'actionlabel' => emt('Void payment'), + 'title' => emt('Void this payment from the database'). + $voidmsg, + ). + ')' if $cust_pay->closed !~ /^Y/i && ( ( $cust_pay->payby eq 'CARD' && $opt{'Credit card void'} ) || ( $cust_pay->payby eq 'CHEK' && $opt{'Echeck void'} ) @@ -207,7 +210,7 @@ if ($opt{'Unapply payment'} && !$cust_pay->closed) { $unapply .= areyousure_link("${p}misc/unapply-cust_pay_refund.cgi?".$cust_pay->paynum, emt('Are you sure you want to unapply this payment from refunds?'), emt('Keep this payment, but dissociate it from the refunds it is currently applied to'), - emt('unapply').' '.emt('refunds') + emt('unapply refunds') ) if $cust_pay->refund_to_unapply; }