salix/print/templates/email/letter-debtor-nd/letter-debtor-nd.js

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-11-04 12:55:20 +00:00
const Component = require(`${appPath}/core/component`);
const db = require(`${appPath}/core/database`);
2019-11-04 12:55:20 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
const attachment = new Component('attachment');
const attachments = require('./attachments.json');
2019-11-04 12:55:20 +00:00
module.exports = {
name: 'letter-debtor-nd',
async serverPrefetch() {
2020-05-22 13:20:55 +00:00
this.debtor = await this.fetchDebtor(this.recipientId, this.companyId);
2019-11-04 12:55:20 +00:00
if (!this.debtor)
throw new Error('Something went wrong');
},
data() {
return {attachments};
},
2019-11-04 12:55:20 +00:00
methods: {
fetchDebtor(clientId, companyId) {
2020-09-25 12:45:00 +00:00
return db.findOneFromDef('client', [clientId, companyId], __dirname);
2019-11-04 12:55:20 +00:00
}
},
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
2019-11-04 12:55:20 +00:00
},
props: {
authorization: {
required: true
},
2020-05-22 13:20:55 +00:00
recipientId: {
2019-11-04 12:55:20 +00:00
required: true
},
companyId: {
required: true
}
}
};