diff options
-rw-r--r-- | FS/FS/payby.pm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/FS/FS/payby.pm b/FS/FS/payby.pm index 8f7f1ae67..54e4092a5 100644 --- a/FS/FS/payby.pm +++ b/FS/FS/payby.pm @@ -35,6 +35,11 @@ Payment types. =cut +# paybys can be any/all of: +# - a customer payment type (cust_main.payby) +# - a payment or refund type (cust_pay.payby) +# - an event type (part_bill_event.payby) + tie %hash, 'Tie::IxHash', 'CARD' => { tinyname => 'card', @@ -95,6 +100,11 @@ tie %hash, 'Tie::IxHash', tinyname => 'declined', shortname => 'Declined payment', longname => 'Declined payment', + + #its neither of these.. + cust_main => '', + cust_pay => '', + }, ; |