2022-09-22 07:17:14 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2019-10-29 06:46:44 +00:00
|
|
|
const emailHeader = new Component('email-header');
|
|
|
|
const emailFooter = new Component('email-footer');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'claim-pickup-order',
|
|
|
|
components: {
|
|
|
|
'email-header': emailHeader.build(),
|
|
|
|
'email-footer': emailFooter.build()
|
|
|
|
},
|
2022-10-27 13:11:57 +00:00
|
|
|
async serverPrefetch() {
|
|
|
|
this.ticket = await this.fetchTicket(this.id);
|
|
|
|
|
|
|
|
if (!this.ticket)
|
|
|
|
throw new Error('Something went wrong');
|
|
|
|
console.log();
|
|
|
|
this.instructions = this.$t('description.instructions', [this.id, this.ticket.id]);
|
2022-07-25 12:49:39 +00:00
|
|
|
},
|
2022-10-27 13:11:57 +00:00
|
|
|
methods: {
|
|
|
|
fetchTicket(id) {
|
|
|
|
return this.findOneFromDef('ticket', [id]);
|
|
|
|
}
|
2022-07-25 12:49:39 +00:00
|
|
|
},
|
2019-11-06 07:20:45 +00:00
|
|
|
props: {
|
2022-09-22 07:17:14 +00:00
|
|
|
id: {
|
2022-01-17 11:44:43 +00:00
|
|
|
type: [Number, String],
|
2019-11-06 07:20:45 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 06:46:44 +00:00
|
|
|
};
|