diff options
author | ivan <ivan> | 2011-01-27 23:46:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-01-27 23:46:36 +0000 |
commit | 5dc0c997d1cb65109a70b8566dc012752829d758 (patch) | |
tree | 03707b8509949379572c4f3e738726b6a11b3f3b | |
parent | 222d044d6ee45f154b3d638b508f97d97f975b4a (diff) |
fix savings ach? RT#11377
-rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 6 |
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 10b898db0..a4da8edee 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -427,9 +427,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'); |