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

26 lines
634 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-26 11:33:27 +00:00
this.invoice = await this.fetchInvoice(this.ref);
2021-07-19 10:31:09 +00:00
},
methods: {
2022-09-26 11:33:27 +00:00
fetchInvoice(ref) {
return this.findOneFromDef('invoice', [ref]);
2021-07-19 10:31:09 +00:00
},
},
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build()
},
props: {
2022-09-26 11:33:27 +00:00
ref: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
2021-07-19 10:31:09 +00:00
required: true
}
}
};