mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2024-11-24 15:12:06 +00:00
26 lines
741 B
JavaScript
Executable File
26 lines
741 B
JavaScript
Executable File
#! /usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
const ebics = require('../index');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const os = require('os');
|
|
|
|
const config = require('./loadConfig')();
|
|
const client = require('./getClient')(config);
|
|
const bankName = client.bankName;
|
|
const template = fs.readFileSync("./templates/ini_"+client.languageCode+".hbs", { encoding: 'utf8'});
|
|
const bankLetterFile = path.join("./", "bankLetter_"+client.bankShortName+"_"+client.languageCode+".html");
|
|
|
|
const letter = new ebics.BankLetter({ client, bankName, template });
|
|
|
|
letter.serialize(bankLetterFile)
|
|
.then(() => {
|
|
console.log('Send your bank the letter (%s)', bankLetterFile);
|
|
})
|
|
.catch((err) => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|