2022-09-26 06:07:45 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2019-11-04 12:55:20 +00:00
|
|
|
const emailHeader = new Component('email-header');
|
|
|
|
const emailFooter = new Component('email-footer');
|
2019-11-07 10:19:05 +00:00
|
|
|
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() {
|
2022-09-26 06:07:45 +00:00
|
|
|
this.debtor = await this.fetchDebtor(this.id, this.companyId);
|
2019-11-04 12:55:20 +00:00
|
|
|
|
|
|
|
if (!this.debtor)
|
|
|
|
throw new Error('Something went wrong');
|
|
|
|
},
|
2019-11-07 10:19:05 +00:00
|
|
|
data() {
|
|
|
|
return {attachments};
|
|
|
|
},
|
2019-11-04 12:55:20 +00:00
|
|
|
methods: {
|
2022-09-26 06:07:45 +00:00
|
|
|
fetchDebtor(id, companyId) {
|
|
|
|
return this.findOneFromDef('client', [id, companyId]);
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'email-header': emailHeader.build(),
|
2019-11-07 10:19:05 +00:00
|
|
|
'email-footer': emailFooter.build(),
|
|
|
|
'attachment': attachment.build()
|
2019-11-04 12:55:20 +00:00
|
|
|
},
|
|
|
|
props: {
|
2022-09-26 06:07:45 +00:00
|
|
|
id: {
|
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
|
2020-03-05 12:56:45 +00:00
|
|
|
},
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
};
|