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

39 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-11-04 12:55:20 +00:00
const Component = require(`${appPath}/core/component`);
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-st',
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-28 11:54:02 +00:00
return this.findOneFromDef('client', [clientId, companyId]);
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: {
2020-05-22 13:20:55 +00:00
recipientId: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
2019-11-04 12:55:20 +00:00
required: true
},
companyId: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
2019-11-04 12:55:20 +00:00
required: true
},
2019-11-04 12:55:20 +00:00
}
};