diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-08-03 17:51:49 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-08-03 17:51:49 -0700 |
commit | 42aecaadc7d27317deb188d2af7025f15047b1ce (patch) | |
tree | 07bbd172f4000b14fbf3be868c4c52a70b601a82 | |
parent | cc78510d45ed8d0a15ba4e3204633fa07d0befb3 (diff) |
add eway as an agent payment gateway, RT#71906, update list of gateways from http://perl.business/onlinepayment (and git for OnlineThirdPartyPayment and BatchPayment)
-rw-r--r-- | httemplate/edit/payment_gateway.html | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/httemplate/edit/payment_gateway.html b/httemplate/edit/payment_gateway.html index a85ba57af..b44b31513 100644 --- a/httemplate/edit/payment_gateway.html +++ b/httemplate/edit/payment_gateway.html @@ -47,28 +47,36 @@ my %modules = ( 'AuthorizeNet', 'BankOfAmerica', #deprecated? 'Beanstream', + 'Braintree', 'Capstone', + 'CardFortress', 'Cardstream', 'CashCow', 'CyberSource', 'eSec', 'eSelectPlus', 'ElavonVirtualMerchant', + 'eWay', 'Exact', 'FirstDataGlobalGateway', + 'GlobalPayments', 'iAuthorizer', 'Ingotz', 'InternetSecure', - 'IPaymentTPG', + #'IPaymentTPG', 'IPPay', 'Iridium', 'Jettis', 'Jety', 'LinkPoint', + 'Litle', 'MerchantCommerce', 'Network1Financial', + 'NMI', 'OCV', + 'Ogone', 'OpenECHO', + 'PaperlessTrans', 'PayConnect', 'PayflowPro', 'PaymenTech', @@ -84,26 +92,31 @@ my %modules = ( 'Skipjack', 'StGeorge', 'SurePay', + 'SynapseGateway', 'TCLink', 'TransactionCentral', 'TransFirsteLink', + 'USAePay', 'Vanco', 'viaKLIX', 'VirtualNet', + 'vSecureProcessing', 'WesternACH', 'WorldPay', ], 'Business::OnlineThirdPartyPayment' => [ #'eWayShared', support currently broken - #'Interswitchng', - 'PayPal', 'FCMB', + #'Interswitchng', #incomplete? + 'PayPal', ], 'Business::BatchPayment' => [ + 'BillBuddy', + 'CardFortress', 'KeyBank', 'Paymentech', + 'RBC', 'TD_EFT', - 'BillBuddy', ], ); @@ -132,7 +145,7 @@ my $fields = [ { field => 'gateway_module', type => 'select', # does it even make sense to list all modules here? - options => [ sort { lc($a) cmp lc ($b) } + options => [ sort { lc($a) cmp lc($b) } map { @$_ } values %modules ], }, 'gateway_username', |