mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-22 14:12:07 +00:00
Merge pull request #29 from Herrie82/herrie/send-XG1
Add XG1 order type and example
This commit is contained in:
commit
65658ab131
27
examples/send-xg1-order.js
Normal file
27
examples/send-xg1-order.js
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#! /usr/bin/env node
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const ebics = require('../index');
|
||||||
|
const fs = require('fs');
|
||||||
|
|
||||||
|
const client = new ebics.Client({
|
||||||
|
url: 'https://ebics.server',
|
||||||
|
partnerId: '',
|
||||||
|
userId: '',
|
||||||
|
hostId: '',
|
||||||
|
passphrase: 'test', // keys-test will be decrypted with this passphrase
|
||||||
|
keyStorage: ebics.fsKeysStorage('./keys-test'),
|
||||||
|
});
|
||||||
|
|
||||||
|
// The bank keys must have been already saved
|
||||||
|
const paymentFile = fs.readFileSync('mytestfile.xml').toString();
|
||||||
|
|
||||||
|
client.send(ebics.Orders.XG1(paymentFile))
|
||||||
|
.then((resp) => {
|
||||||
|
console.log('Response for XG1 order %j', resp);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
8
lib/predefinedOrders/XG1.js
Normal file
8
lib/predefinedOrders/XG1.js
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = document => ({
|
||||||
|
version: 'h004',
|
||||||
|
orderDetails: { OrderType: 'XG1', OrderAttribute: 'OZHNN', StandardOrderParams: {} },
|
||||||
|
operation: 'upload',
|
||||||
|
document,
|
||||||
|
});
|
@ -13,6 +13,7 @@ const CCT = require('./CCT');
|
|||||||
const CCS = require('./CCS');
|
const CCS = require('./CCS');
|
||||||
const XE3 = require('./XE3');
|
const XE3 = require('./XE3');
|
||||||
const XCT = require('./XCT');
|
const XCT = require('./XCT');
|
||||||
|
const XG1 = require('./XG1');
|
||||||
|
|
||||||
const STA = require('./STA');
|
const STA = require('./STA');
|
||||||
const VMK = require('./VMK');
|
const VMK = require('./VMK');
|
||||||
@ -42,6 +43,7 @@ module.exports = {
|
|||||||
CCS,
|
CCS,
|
||||||
XE3,
|
XE3,
|
||||||
XCT,
|
XCT,
|
||||||
|
XG1,
|
||||||
|
|
||||||
STA,
|
STA,
|
||||||
VMK,
|
VMK,
|
||||||
|
Loading…
Reference in New Issue
Block a user