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-10-25 09:58:23 +00:00
|
|
|
const reportFooter = new Component('report-footer');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'exportation',
|
|
|
|
async serverPrefetch() {
|
2022-09-29 05:35:20 +00:00
|
|
|
this.invoice = await this.fetchInvoice(this.reference);
|
2021-10-25 09:58:23 +00:00
|
|
|
|
|
|
|
if (!this.invoice)
|
|
|
|
throw new Error('Something went wrong');
|
2022-09-26 11:33:27 +00:00
|
|
|
|
|
|
|
this.company = await this.findOneFromDef('company', [this.invoice.companyFk]);
|
2021-10-25 09:58:23 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2022-09-29 05:35:20 +00:00
|
|
|
fetchInvoice(reference) {
|
|
|
|
return this.findOneFromDef('invoice', [reference]);
|
2021-10-25 09:58:23 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
issued: function() {
|
|
|
|
const filters = this.$options.filters;
|
|
|
|
|
|
|
|
return filters.date(this.invoice.issued, '%d-%m-%Y');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2022-11-10 07:57:42 +00:00
|
|
|
'report-body': reportBody.build(),
|
2021-10-25 09:58:23 +00:00
|
|
|
'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-10-25 09:58:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|