summaryrefslogtreecommitdiff
path: root/httemplate/view/cust_main/payment_history
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/view/cust_main/payment_history')
-rw-r--r--httemplate/view/cust_main/payment_history/voided_payment.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/httemplate/view/cust_main/payment_history/voided_payment.html b/httemplate/view/cust_main/payment_history/voided_payment.html
index 4438613..6103727 100644
--- a/httemplate/view/cust_main/payment_history/voided_payment.html
+++ b/httemplate/view/cust_main/payment_history/voided_payment.html
@@ -11,12 +11,12 @@ my $payby = $cust_pay_void->payby;
my $payinfo;
if ( $payby eq 'CARD' ) {
- $payinfo = $cust_pay->paymask;
+ $payinfo = $cust_pay_void->paymask;
} elsif ( $payby eq 'CHEK' ) {
- my( $account, $aba ) = split('@', $cust_pay->paymask );
+ my( $account, $aba ) = split('@', $cust_pay_void->paymask );
$payinfo = "ABA $aba, Acct #$account";
} else {
- $payinfo = $cust_pay->payinfo;
+ $payinfo = $cust_pay_void->payinfo;
}
$payby =~ s/^BILL$/Check #/ if $payinfo;