X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpayment_history%2Fpayment.html;h=8faed3ca7f8c65ee06dcb4f38b28402485658c90;hb=b1b3d6b3c0db38909b6f569e08877d2678587d22;hp=16b91c2f28a7b7ca20a171e01c27c9f9670ec462;hpb=9192ae1275e778f890d75c07066ddd2e4cabaa26;p=freeside.git diff --git a/httemplate/view/cust_main/payment_history/payment.html b/httemplate/view/cust_main/payment_history/payment.html index 16b91c2f2..8faed3ca7 100644 --- a/httemplate/view/cust_main/payment_history/payment.html +++ b/httemplate/view/cust_main/payment_history/payment.html @@ -103,7 +103,7 @@ if ($unapplied > 0) { if ( $opt{total_unapplied_refunds} > 0 ) { $apply.= ' ('. include( '/elements/popup_link.html', - 'label' => emt('apply to refund'), + 'label' => emt('apply refund'), 'action' => "${p}edit/cust_pay_refund.cgi?". $cust_pay->paynum, 'actionlabel' => emt('Apply payment to refund'), @@ -198,20 +198,18 @@ $void = ' ('. my $unapply = ''; if ($opt{'Unapply payment'} && !$cust_pay->closed) { - my $refund_to_unapply = $cust_pay->refund_to_unapply; - my $usepre = $refund_to_unapply && @cust_bill_pay; $unapply = areyousure_link("${p}misc/unapply-cust_pay.cgi?".$cust_pay->paynum, emt('Are you sure you want to unapply this payment from invoices?'), emt('Keep this payment, but dissociate it from the invoices it is currently applied against'), - emt('unapply') . ($usepre ? ' ' . emt('invoices') : '') + emt('unapply') ) if @cust_bill_pay; $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') . ($usepre ? ' ' . emt('refunds') : '') + emt('unapply refunds') ) - if $refund_to_unapply; + if $cust_pay->refund_to_unapply; }