Business-OnlinePayment-IPPay
view release on metacpan or search on metacpan
101102103104105106107108109110111112113114115116117118119120
$content
{
'TransactionType'
} =
$actions
{
$action
} ||
$action
;
}
elsif
(
$self
->transaction_type eq
'ECHECK'
) {
$content
{
'TransactionType'
} =
$check_actions
{
$action
} ||
$action
;
# ACCOUNT TYPE MAP
my
%account_types
= (
'personal checking'
=>
'CHECKING'
,
'personal savings'
=>
'SAVINGS'
,
'business checking'
=>
'CHECKING'
,
'business savings'
=>
'SAVINGS'
,
#not technically B:OP valid i guess?
'checking'
=>
'CHECKING'
,
'savings'
=>
'SAVINGS'
,
);
$content
{
'account_type'
} =
$account_types
{
lc
(
$content
{
'account_type'
})}
||
$content
{
'account_type'
};
}
$content
{Origin} =
'RECURRING'
if
(
$content
{recurring_billing} &
&$content
{recurring_billing} eq
'YES'
);
( run in 0.230 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )