mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
apiLoginId added.
This commit is contained in:
parent
77513a6bcc
commit
aa12278d7c
@ -18,6 +18,7 @@ class FortePaymentGateway extends Migration
|
||||
{
|
||||
$fields = new \stdClass;
|
||||
$fields->testMode = false;
|
||||
$fields->apiLoginId = "";
|
||||
$fields->apiAccessId = "";
|
||||
$fields->secureKey = "";
|
||||
$fields->authOrganizationId = "";
|
||||
|
@ -117,7 +117,7 @@
|
||||
var routing_number=document.getElementById('routing-number').value;
|
||||
|
||||
var data = {
|
||||
api_login_id: 'D4A18FE6DC',
|
||||
api_login_id: '{{$gateway->getConfigField("apiAccessId")}}',
|
||||
account_number: account_number,
|
||||
routing_number: routing_number,
|
||||
account_type: "checking",
|
||||
|
@ -108,7 +108,7 @@
|
||||
document.getElementById('expire_month').value=month;
|
||||
|
||||
var data = {
|
||||
api_login_id: 'D4A18FE6DC',
|
||||
api_login_id: '{{$gateway->getConfigField("apiLoginId")}}',
|
||||
card_number: cc,
|
||||
expire_year: year,
|
||||
expire_month: month,
|
||||
|
Loading…
x
Reference in New Issue
Block a user