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

26 lines
648 B
JavaScript
Raw Normal View History

2022-09-26 11:33:27 +00:00
const Component = require(`vn-print/core/component`);
2021-07-19 10:31:09 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
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: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build()
},
props: {
2022-09-29 05:35:20 +00:00
reference: {
2022-10-28 13:53:57 +00:00
type: Number,
2021-07-19 10:31:09 +00:00
required: true
}
}
};