salix/print/templates/email/claim-pickup-order/claim-pickup-order.js

29 lines
696 B
JavaScript
Raw Normal View History

2022-09-22 07:17:14 +00:00
const Component = require(`vn-print/core/component`);
2022-11-10 08:51:28 +00:00
const emailBody = new Component('email-body');
2019-10-29 06:46:44 +00:00
module.exports = {
name: 'claim-pickup-order',
components: {
2022-11-10 08:51:28 +00:00
'email-body': emailBody.build(),
2019-10-29 06:46:44 +00:00
},
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');
2022-10-28 07:21:28 +00:00
2022-10-27 13:11:57 +00:00
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
},
props: {
2022-09-22 07:17:14 +00:00
id: {
2022-10-28 13:53:57 +00:00
type: Number,
required: true
}
}
2019-10-29 06:46:44 +00:00
};