salix/print/templates/email/invoice/invoice.js

23 lines
544 B
JavaScript
Raw Normal View History

2022-09-26 11:33:27 +00:00
const Component = require(`vn-print/core/component`);
2022-11-10 08:51:28 +00:00
const emailBody = new Component('email-body');
2021-07-19 10:31:09 +00:00
module.exports = {
name: 'invoice',
async serverPrefetch() {
2022-09-29 05:35:20 +00:00
this.invoice = await this.fetchInvoice(this.reference);
2021-07-19 10:31:09 +00:00
},
methods: {
2022-09-29 05:35:20 +00:00
fetchInvoice(reference) {
return this.findOneFromDef('invoice', [reference]);
2021-07-19 10:31:09 +00:00
},
},
components: {
2022-11-10 08:51:28 +00:00
'email-body': emailBody.build(),
2021-07-19 10:31:09 +00:00
},
props: {
2022-09-29 05:35:20 +00:00
reference: {
2022-11-11 07:55:56 +00:00
type: String,
2021-07-19 10:31:09 +00:00
required: true
}
}
};