mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-08-13 11:25:36 +00:00
Add XG1 order type and example
XG1 order type is used for ISO XML 20022 CGI (Common Global Implementation) which should be a unified format that works within a country (irrespective of bank). Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
This commit is contained in:
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 XE3 = require('./XE3');
|
||||
const XCT = require('./XCT');
|
||||
const XG1 = require('./XG1');
|
||||
|
||||
const STA = require('./STA');
|
||||
const VMK = require('./VMK');
|
||||
@@ -42,6 +43,7 @@ module.exports = {
|
||||
CCS,
|
||||
XE3,
|
||||
XCT,
|
||||
XG1,
|
||||
|
||||
STA,
|
||||
VMK,
|
||||
|
Reference in New Issue
Block a user