2019-11-04 12:55:20 +00:00
|
|
|
const Component = require(`${appPath}/core/component`);
|
2019-11-07 10:19:05 +00:00
|
|
|
const db = require(`${appPath}/core/database`);
|
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() {
|
2020-05-22 13:20:55 +00:00
|
|
|
this.payMethod = await this.fetchPayMethod(this.recipientId);
|
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: {
|
2019-11-19 11:53:25 +00:00
|
|
|
fetchPayMethod(clientId) {
|
2019-11-04 12:55:20 +00:00
|
|
|
return db.findOne(
|
|
|
|
`SELECT
|
|
|
|
c.dueDay,
|
|
|
|
c.iban,
|
2019-11-19 11:53:25 +00:00
|
|
|
pm.name,
|
|
|
|
pm.code
|
2019-11-04 12:55:20 +00:00
|
|
|
FROM client c
|
|
|
|
JOIN payMethod pm ON pm.id = c.payMethodFk
|
2019-11-19 11:53:25 +00:00
|
|
|
WHERE c.id = :clientId`, {clientId: clientId});
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'email-header': emailHeader.build(),
|
|
|
|
'email-footer': emailFooter.build()
|
|
|
|
},
|
|
|
|
props: {
|
2020-05-22 13:20:55 +00:00
|
|
|
recipientId: {
|
2019-11-04 12:55:20 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|