X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fpayment_gateway.html;h=156910f5152c7f64f4906875d54b3702b7242744;hb=45d0f6c6325fb8ab5fdc478a7dc278872defa479;hp=7cfab71d877d684d756ef999c98d5cc26127e0c9;hpb=a1a0800de7c69fe5ee414b79e408ceacd4a1c2c3;p=freeside.git diff --git a/httemplate/edit/payment_gateway.html b/httemplate/edit/payment_gateway.html index 7cfab71d8..156910f51 100644 --- a/httemplate/edit/payment_gateway.html +++ b/httemplate/edit/payment_gateway.html @@ -55,6 +55,7 @@ my %modules = ( 'eSelectPlus', 'ElavonVirtualMerchant', 'Exact', + 'FirstDataGlobalGateway', 'iAuthorizer', 'Ingotz', 'InternetSecure', @@ -93,14 +94,16 @@ my %modules = ( 'WorldPay', ], 'Business::OnlineThirdPartyPayment' => [ - 'eWayShared', - 'Interswitchng', + #'eWayShared', support currently broken + #'Interswitchng', 'PayPal', + 'FCMB', ], 'Business::BatchPayment' => [ 'KeyBank', 'Paymentech', 'TD_EFT', + 'BillBuddy', ], ); @@ -110,8 +113,7 @@ my @actions = ( 'Authorization Only,Post Authorization', ); -my $fields = [ - { +my $fields = [ { field => 'gateway_namespace', type => 'select', options => [ qw( @@ -164,8 +166,11 @@ my $fields = [ my $field_callback = sub { my ($cgi, $object, $field_hashref ) = @_; if ($object->gatewaynum) { - if ( $field_hashref->{field} =~ /gateway_(module|namespace)/ ) { + if ( $field_hashref->{field} eq 'gateway_module' ) { + $field_hashref->{type} = 'fixed'; + } elsif ( $field_hashref->{field} eq 'gateway_namespace' ) { $field_hashref->{type} = 'fixed'; + $field_hashref->{formatted_value} = $object->namespace_description; } } };