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

26 lines
644 B
JavaScript
Raw Normal View History

2021-07-19 10:31:09 +00:00
const Component = require(`${appPath}/core/component`);
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
module.exports = {
name: 'invoice',
async serverPrefetch() {
2022-07-21 08:05:37 +00:00
this.invoice = await this.fetchInvoice(this.refFk);
2021-07-19 10:31:09 +00:00
},
methods: {
2022-07-21 08:05:37 +00:00
fetchInvoice(refFk) {
return this.findOneFromDef('invoice', [refFk]);
2021-07-19 10:31:09 +00:00
},
},
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build()
},
props: {
2022-07-21 08:05:37 +00:00
refFk: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
2021-07-19 10:31:09 +00:00
required: true
}
}
};