Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add XG1 order type and example #29

Merged
merged 1 commit into from Dec 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 27 additions & 0 deletions examples/send-xg1-order.js
@@ -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 changes: 8 additions & 0 deletions lib/predefinedOrders/XG1.js
@@ -0,0 +1,8 @@
'use strict';

module.exports = document => ({
version: 'h004',
orderDetails: { OrderType: 'XG1', OrderAttribute: 'OZHNN', StandardOrderParams: {} },
operation: 'upload',
document,
});
2 changes: 2 additions & 0 deletions lib/predefinedOrders/index.js
Expand Up @@ -13,6 +13,7 @@ const CCT = require('./CCT');
const CCS = require('./CCS');
const XE3 = require('./XE3');
const XCT = require('./XCT');
const XG1 = require('./XG1');

const STA = require('./STA');
const VMK = require('./VMK');
Expand Down Expand Up @@ -42,6 +43,7 @@ module.exports = {
CCS,
XE3,
XCT,
XG1,

STA,
VMK,
Expand Down