2021-03-01 10:25:37 +00:00
|
|
|
const Component = require(`${appPath}/core/component`);
|
|
|
|
const reportHeader = new Component('report-header');
|
|
|
|
const reportFooter = new Component('report-footer');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'invoice-incoterms',
|
|
|
|
async serverPrefetch() {
|
2022-07-21 08:05:37 +00:00
|
|
|
this.invoice = await this.fetchInvoice(this.refFk);
|
|
|
|
this.client = await this.fetchClient(this.refFk);
|
|
|
|
this.incoterms = await this.fetchIncoterms(this.refFk);
|
2021-03-01 10:25:37 +00:00
|
|
|
|
|
|
|
if (!this.invoice)
|
|
|
|
throw new Error('Something went wrong');
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
2022-07-21 08:05:37 +00:00
|
|
|
fetchInvoice(refFk) {
|
|
|
|
return this.findOneFromDef('invoice', [refFk]);
|
2021-03-01 10:25:37 +00:00
|
|
|
},
|
2022-07-21 08:05:37 +00:00
|
|
|
fetchClient(refFk) {
|
|
|
|
return this.findOneFromDef('client', [refFk]);
|
2021-03-01 10:25:37 +00:00
|
|
|
},
|
2022-07-21 08:05:37 +00:00
|
|
|
fetchIncoterms(refFk) {
|
|
|
|
return this.findOneFromDef('incoterms', [refFk, refFk, refFk]);
|
2021-03-01 10:25:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'report-header': reportHeader.build(),
|
|
|
|
'report-footer': reportFooter.build()
|
|
|
|
},
|
|
|
|
props: {
|
2022-07-21 08:05:37 +00:00
|
|
|
refFk: {
|
2022-01-17 11:44:43 +00:00
|
|
|
type: [Number, String],
|
2021-03-01 10:25:37 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|