summaryrefslogtreecommitdiff
path: root/FS/FS/cust_main
diff options
context:
space:
mode:
authorivan <ivan>2011-01-27 23:46:34 +0000
committerivan <ivan>2011-01-27 23:46:34 +0000
commit25e6733121bd27638a1b15f6365f63cc5c17f5ab (patch)
tree5a6e598aee9afbce72068551645a8fe5264f63cc /FS/FS/cust_main
parent262fe981ce32e32058eb01f1a6c3e4112794eb88 (diff)
fix savings ach? RT#11377
Diffstat (limited to 'FS/FS/cust_main')
-rw-r--r--FS/FS/cust_main/Billing_Realtime.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm
index 5d1a20abc..c8d328fcf 100644
--- a/FS/FS/cust_main/Billing_Realtime.pm
+++ b/FS/FS/cust_main/Billing_Realtime.pm
@@ -461,9 +461,9 @@ sub realtime_bop {
$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');