[freeside-commits] freeside/httemplate/view/cust_main/payment_history voided_payment.html, 1.3, 1.4
Ivan,,,
ivan at wavetail.420.am
Mon Oct 5 09:57:29 PDT 2009
Update of /home/cvs/cvsroot/freeside/httemplate/view/cust_main/payment_history
In directory wavetail.420.am:/tmp/cvs-serv28729
Modified Files:
voided_payment.html
Log Message:
doh, fix error viewing voided payments, RT#6382
Index: voided_payment.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/view/cust_main/payment_history/voided_payment.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- voided_payment.html 1 Oct 2009 22:02:33 -0000 1.3
+++ voided_payment.html 5 Oct 2009 16:57:27 -0000 1.4
@@ -11,12 +11,12 @@
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;
More information about the freeside-commits
mailing list