X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=LinkPoint.pm;h=1e5b1abb4c8a46e18e07330ca5b45ac096bd9551;hb=d723cf7eb99572f3b4ac17a649bace0c9177b52e;hp=71015f776a8c1745a030643fdf6b8673069919dc;hpb=bae4cd5aaec29c73eeff2250ec21af5d46d2fe9d;p=Business-OnlinePayment-LinkPoint.git diff --git a/LinkPoint.pm b/LinkPoint.pm index 71015f7..1e5b1ab 100644 --- a/LinkPoint.pm +++ b/LinkPoint.pm @@ -1,6 +1,6 @@ package Business::OnlinePayment::LinkPoint; -# $Id: LinkPoint.pm,v 1.25 2007-04-05 23:12:06 jeff Exp $ +# $Id: LinkPoint.pm,v 1.26 2007-04-07 00:00:31 jeff Exp $ use strict; use vars qw($VERSION @ISA $DEBUG @EXPORT @EXPORT_OK); @@ -13,8 +13,8 @@ require Exporter; @ISA = qw(Exporter AutoLoader Business::OnlinePayment); @EXPORT = qw(); @EXPORT_OK = qw(); -$VERSION = '0.06'; -$DEBUG = 0; +$VERSION = '0.07'; +$DEBUG = 1; use lpperl; #3; #lpperl.pm from LinkPoint $LPPERL::VERSION =~ /^(\d+\.\d+)/ @@ -46,6 +46,15 @@ sub map_fields { ); $content{'action'} = $actions{lc($content{'action'})} || $content{'action'}; + #ACCOUNT TYPE MAP + my %account_types = ('personal checking' => 'pc', + 'personal savings' => 'ps', + 'business checking' => 'bc', + 'business savings' => 'bs', + ); + $content{'account_type'} = $account_types{lc($content{'account_type'})} + || $content{'account_type'}; + # stuff it back into %content $self->content(%content); } @@ -103,7 +112,7 @@ sub submit { unless ( $content{action} eq 'POSTAUTH' || ( $content{'action'} =~ /^(CREDIT|VOID)$/ && exists $content{'order_number'} ) - || $self->transaction_type() =~ /^check$/i + || $self->transaction_type() =~ /^e?check$/i ) { if ( $self->transaction_type() =~ @@ -134,7 +143,7 @@ sub submit { #docs disagree with lpperl.pm here $content{'voidcheck'} = 1 - if ($self->transaction_type() =~ /^check$/i + if ($self->transaction_type() =~ /^e?check$/i && $content{'action'} =~ /^VOID$/); $self->revmap_fields( @@ -151,6 +160,7 @@ sub submit { chargetotal => 'amount', oid => 'order_number', bankname => 'bank_name', + bankstate => 'bank_state', routing => 'routing_code', account => 'account_number', accounttype => 'account_type', @@ -164,7 +174,7 @@ sub submit { my @required_fields = qw(host port configfile keyfile amount); if ($self->transaction_type() =~ /^(cc|visa|mastercard|american express|discover)$/i) { push @required_fields, qw(cardnumber cardexpmonth cardexpyear); - }elsif ($self->transaction_type() =~ /^check$/i) { + }elsif ($self->transaction_type() =~ /^e?check$/i) { push @required_fields, qw( dl dlstate routing account accounttype bankname bankstate name );