[freeside-commits] freeside/FS/FS/cust_main Billing_Realtime.pm, 1.9.2.2, 1.9.2.3
Ivan,,,
ivan at wavetail.420.am
Thu Jan 27 15:46:38 PST 2011
Update of /home/cvs/cvsroot/freeside/FS/FS/cust_main
In directory wavetail.420.am:/tmp/cvs-serv5128
Modified Files:
Tag: FREESIDE_2_1_BRANCH
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.9.2.2
retrieving revision 1.9.2.3
diff -u -w -d -r1.9.2.2 -r1.9.2.3
--- Billing_Realtime.pm 21 Dec 2010 09:13:03 -0000 1.9.2.2
+++ Billing_Realtime.pm 27 Jan 2011 23:46:36 -0000 1.9.2.3
@@ -427,9 +427,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