salix/print/templates/reports/exportation/exportation.js

39 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-09-26 11:33:27 +00:00
const Component = require(`vn-print/core/component`);
const reportHeader = new Component('report-header');
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);
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]);
},
methods: {
2022-09-29 05:35:20 +00:00
fetchInvoice(reference) {
return this.findOneFromDef('invoice', [reference]);
}
},
computed: {
issued: function() {
const filters = this.$options.filters;
return filters.date(this.invoice.issued, '%d-%m-%Y');
}
},
components: {
'report-header': reportHeader.build(),
'report-footer': reportFooter.build()
},
props: {
2022-09-29 05:35:20 +00:00
reference: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
2022-09-26 11:33:27 +00:00
required: true,
description: 'The invoice ref'
}
}
};