[freeside-commits] freeside/FS/FS/cust_main Billing_Realtime.pm, 1.15, 1.16
Ivan,,,
ivan at wavetail.420.am
Thu Jan 27 15:46:36 PST 2011
Update of /home/cvs/cvsroot/freeside/FS/FS/cust_main
In directory wavetail.420.am:/tmp/cvs-serv5118
Modified Files:
Billing_Realtime.pm
Log Message:
fix savings ach? RT#11377
Index: Billing_Realtime.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/cust_main/Billing_Realtime.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -w -d -r1.15 -r1.16
--- Billing_Realtime.pm 23 Jan 2011 22:53:20 -0000 1.15
+++ Billing_Realtime.pm 27 Jan 2011 23:46:34 -0000 1.16
@@ -461,9 +461,9 @@
$content{bank_state} = exists($options{'paystate'})
? $options{'paystate'}
: $self->getfield('paystate');
- $content{account_type} = exists($options{'paytype'})
- ? uc($options{'paytype'}) || 'CHECKING'
- : uc($self->getfield('paytype')) || 'CHECKING';
+ $content{account_type}= (exists($options{'paytype'}) && $options{'paytype'})
+ ? uc($options{'paytype'})
+ : uc($self->getfield('paytype')) || 'PERSONAL CHECKING';
$content{account_name} = $self->getfield('first'). ' '.
$self->getfield('last');
More information about the freeside-commits
mailing list