mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 21:52:07 +00:00
a628e00b9b
Add custom order types (G02, G52, G53, G1R and G1V) and examples for Bank GPB AO (Gazprombank Russia). Pain.001.001.06 (RUB) - G1R Pain.001.001.06 (FCY/FX/RLS) - G1V Pain.002.001.06 - G02 Camt.052.001.05 - G52 Camt.053.001.05 - G53 Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
21 lines
435 B
JavaScript
21 lines
435 B
JavaScript
#! /usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const fs = require('fs');
|
|
|
|
const client = require('./getClient')();
|
|
const { Orders } = require('../index');
|
|
|
|
// The bank keys must have been already saved
|
|
const paymentFile = fs.readFileSync('RUB_PAYMENT.xml').toString();
|
|
|
|
client.send(Orders.G1R(paymentFile))
|
|
.then((resp) => {
|
|
console.log('Response for G1R order %j', resp);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|