mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Bank account: Javascript
This commit is contained in:
parent
db06cca338
commit
bce0d00556
52
resources/js/clients/payment_methods/wepay-bank-account.js
vendored
Normal file
52
resources/js/clients/payment_methods/wepay-bank-account.js
vendored
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
/**
|
||||||
|
* Invoice Ninja (https://invoiceninja.com).
|
||||||
|
*
|
||||||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||||||
|
*
|
||||||
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||||||
|
*
|
||||||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||||||
|
*/
|
||||||
|
|
||||||
|
class WePayBank {
|
||||||
|
initializeWePay() {
|
||||||
|
let environment = document.querySelector('meta[name="wepay-environment"]')?.content;
|
||||||
|
|
||||||
|
WePay.set_endpoint(environment === 'staging' ? 'stage' : 'production');
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
showBankPopup() {
|
||||||
|
WePay.bank_account.create({
|
||||||
|
client_id: document.querySelector('meta[name=wepay-client-id]')?.content,
|
||||||
|
email: document.querySelector('meta[name=contact-email]')?.content
|
||||||
|
}, function (data) {
|
||||||
|
if (data.error) {
|
||||||
|
errors.textContent = '';
|
||||||
|
errors.textContent = data.error_description;
|
||||||
|
errors.hidden = false;
|
||||||
|
} else {
|
||||||
|
document.querySelector('input[name="bank_account_id"]').value = data.bank_account_id;
|
||||||
|
document.getElementById('server_response').submit();
|
||||||
|
}
|
||||||
|
}, function (data) {
|
||||||
|
if (data.error) {
|
||||||
|
errors.textContent = '';
|
||||||
|
errors.textContent = data.error_description;
|
||||||
|
errors.hidden = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
handle() {
|
||||||
|
this
|
||||||
|
.initializeWePay()
|
||||||
|
.showBankPopup();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', () => {
|
||||||
|
new WePayBank().handle();
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user