summaryrefslogtreecommitdiff
path: root/FS/FS/payby.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-01-25 21:44:54 -0800
committerIvan Kohler <ivan@freeside.biz>2015-01-25 21:44:54 -0800
commit8d953e7c2f94dc007d94da74650d27c5a74cc792 (patch)
treee1eff75da8cd34030b43988db867372bd782a480 /FS/FS/payby.pm
parent446fb74f2f31d48dd303c9a52105d40f11079e10 (diff)
manual echeck payment type, RT#26995
Diffstat (limited to 'FS/FS/payby.pm')
-rw-r--r--FS/FS/payby.pm10
1 files changed, 9 insertions, 1 deletions
diff --git a/FS/FS/payby.pm b/FS/FS/payby.pm
index 197d499..c4aa1b1 100644
--- a/FS/FS/payby.pm
+++ b/FS/FS/payby.pm
@@ -113,6 +113,12 @@ tie %hash, 'Tie::IxHash',
longname => 'Manual credit card',
cust_main => 'BILL', #this is a payment type only, customers go to BILL...
},
+ 'MCHK' => { #not the same as DCHK
+ tinyname => 'card',
+ shortname => 'Manual electronic check', # initial payment, then billing
+ longname => 'Manual electronic check',
+ cust_main => 'BILL', #this is a payment type only, customers go to BILL...
+ },
'APPL' => {
tinyname => 'apple store',
shortname => 'Apple Store',
@@ -207,7 +213,9 @@ sub longname {
%payby2bop = (
'CARD' => 'CC',
'CHEK' => 'ECHECK',
- 'MCRD' => 'CC',
+ 'MCRD' => 'CC', #? but doesn't MCRD mean _offline_ card? i think it got
+ # overloaded for third-party card payments -- but no one is
+ # doing those other than paypal now
'PPAL' => 'PAYPAL',
);