[freeside-commits] freeside/httemplate/view/cust_main/payment_history voided_payment.html, 1.1.2.3, 1.1.2.4

Ivan,,, ivan at wavetail.420.am
Mon Oct 5 09:57:30 PDT 2009


Update of /home/cvs/cvsroot/freeside/httemplate/view/cust_main/payment_history
In directory wavetail.420.am:/tmp/cvs-serv28737

Modified Files:
      Tag: FREESIDE_1_7_BRANCH
	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.1.2.3
retrieving revision 1.1.2.4
diff -u -d -r1.1.2.3 -r1.1.2.4
--- voided_payment.html	1 Oct 2009 22:02:03 -0000	1.1.2.3
+++ voided_payment.html	5 Oct 2009 16:57:28 -0000	1.1.2.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