mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-21 13:42:06 +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>
29 lines
776 B
JavaScript
29 lines
776 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
|
|
client.send(Orders.G52(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
|
|
.then((resp) => {
|
|
console.log('Response for G52 order %j', resp);
|
|
if (resp.technicalCode !== '000000')
|
|
throw new Error('Something went wrong');
|
|
|
|
// Parsing and processing the CAMT052 file should happen somewhere here, ideally after saving it to disk
|
|
const data = Buffer.from(resp.orderData);
|
|
let distPath = "CAMT052-G52.zip";
|
|
const dstZip = fs.createWriteStream(distPath);
|
|
dstZip.write(data);
|
|
dstZip.end();
|
|
})
|
|
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|