This merchant accepts eCheck (ACH) transactions only; no credit card transactions are accepted.

This commit is contained in:
ethem
2006-09-04 07:51:15 +00:00
parent f1b31fb517
commit 039edfab07
2 changed files with 10 additions and 1 deletions
+9 -1
View File
@@ -397,7 +397,15 @@ function authorize_action(&$order, &$message, &$extra, $action=AN_ACTION_NONE, $
}
break;
}
// Electronic checks aren't accepted
// Echecks only
case AN_REASON_ACHONLY:
{
set_config('an_acceptmethods', AN_METHOD_ECHECK);
email_to_admin("$message " .
"This is new config(an_acceptmethods):", array(AN_METHOD_ECHECK));
break;
}
// Echecks aren't accepted
case AN_REASON_NOACH:
{
set_config('an_acceptmethods', AN_METHOD_CC);
+1
View File
@@ -154,6 +154,7 @@ $string['reason50'] = 'This transaction is awaiting settlement and cannot be ref
$string['reason51'] = 'The sum of all credits against this transaction is greater than the original transaction amount.';
$string['reason54'] = 'The referenced transaction does not meet the criteria for issuing a credit.';
$string['reason55'] = 'The sum of credits against the referenced transaction would exceed the original debit amount.';
$string['reason56'] = 'This merchant accepts eCheck (ACH) transactions only; no credit card transactions are accepted.';
$string['refund'] = 'Refund';
$string['refunded'] = 'Refunded';
$string['returns'] = 'Returns';