salix/print/templates/reports/invoice-incoterms/invoice-incoterms.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-09-26 11:33:27 +00:00
const Component = require(`vn-print/core/component`);
2022-11-10 07:57:42 +00:00
const reportBody = new Component('report-body');
2021-03-01 10:25:37 +00:00
const reportHeader = new Component('report-header');
const reportFooter = new Component('report-footer');
module.exports = {
name: 'invoice-incoterms',
async serverPrefetch() {
2022-09-29 05:35:20 +00:00
this.invoice = await this.fetchInvoice(this.reference);
this.client = await this.fetchClient(this.reference);
this.incoterms = await this.fetchIncoterms(this.reference);
2021-03-01 10:25:37 +00:00
if (!this.invoice)
throw new Error('Something went wrong');
},
computed: {
},
methods: {
2022-09-29 05:35:20 +00:00
fetchInvoice(reference) {
return this.findOneFromDef('invoice', [reference]);
2021-03-01 10:25:37 +00:00
},
2022-09-29 05:35:20 +00:00
fetchClient(reference) {
return this.findOneFromDef('client', [reference]);
2021-03-01 10:25:37 +00:00
},
2022-09-29 05:35:20 +00:00
fetchIncoterms(reference) {
return this.findOneFromDef('incoterms', [reference, reference, reference]);
2021-03-01 10:25:37 +00:00
}
},
components: {
2022-11-10 07:57:42 +00:00
'report-body': reportBody.build(),
2021-03-01 10:25:37 +00:00
'report-header': reportHeader.build(),
'report-footer': reportFooter.build()
},
props: {
2022-09-29 05:35:20 +00:00
reference: {
2022-10-28 13:53:57 +00:00
type: Number,
2022-09-26 11:33:27 +00:00
required: true,
description: 'The invoice ref'
2021-03-01 10:25:37 +00:00
}
}
};