2022-09-30 11:54:20 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2019-11-04 12:55:20 +00:00
|
|
|
const emailHeader = new Component('email-header');
|
|
|
|
const emailFooter = new Component('email-footer');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'payment-update',
|
|
|
|
async serverPrefetch() {
|
2022-09-30 11:54:20 +00:00
|
|
|
this.payMethod = await this.fetchPayMethod(this.id);
|
2019-11-04 12:55:20 +00:00
|
|
|
|
2019-11-19 11:53:25 +00:00
|
|
|
if (!this.payMethod)
|
2019-11-04 12:55:20 +00:00
|
|
|
throw new Error('Something went wrong');
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
accountAddress: function() {
|
2019-11-19 11:53:25 +00:00
|
|
|
return this.payMethod.iban.slice(-4);
|
2019-11-04 12:55:20 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
2022-09-30 11:54:20 +00:00
|
|
|
fetchPayMethod(id) {
|
|
|
|
return this.findOneFromDef('payMethod', [id]);
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'email-header': emailHeader.build(),
|
|
|
|
'email-footer': emailFooter.build()
|
|
|
|
},
|
|
|
|
props: {
|
2022-09-30 11:54:20 +00:00
|
|
|
id: {
|
2022-01-17 11:44:43 +00:00
|
|
|
type: [Number, String],
|
2022-09-30 11:54:20 +00:00
|
|
|
required: true,
|
|
|
|
description: 'The client id'
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|