salix/print/templates/email/client-welcome/client-welcome.js

37 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-10-31 11:43:04 +00:00
const Component = require(`${appPath}/core/component`);
const db = require(`${appPath}/core/database`);
2019-10-29 06:46:44 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
2019-01-22 08:55:35 +00:00
module.exports = {
name: 'client-welcome',
2019-10-29 06:46:44 +00:00
async serverPrefetch() {
this.client = await this.fetchClient(this.clientId);
},
2019-01-22 08:55:35 +00:00
methods: {
2019-10-29 06:46:44 +00:00
fetchClient(clientId) {
return db.findOne(`
2019-01-22 08:55:35 +00:00
SELECT
c.id,
u.name AS userName,
CONCAT(w.lastName, ' ', w.firstName) salesPersonName,
2019-01-22 08:55:35 +00:00
w.phone AS salesPersonPhone,
CONCAT(wu.name, '@verdnatura.es') AS salesPersonEmail
FROM client c
JOIN account.user u ON u.id = c.id
LEFT JOIN worker w ON w.id = c.salesPersonFk
LEFT JOIN account.user wu ON wu.id = w.userFk
2019-10-29 06:46:44 +00:00
WHERE c.id = ?`, [clientId]);
2019-01-22 08:55:35 +00:00
},
},
components: {
2019-10-29 06:46:44 +00:00
'email-header': emailHeader.build(),
'email-footer': emailFooter.build()
2019-01-22 08:55:35 +00:00
},
2019-10-31 11:43:04 +00:00
props: {
clientId: {
required: true
}
}
2019-01-22 08:55:35 +00:00
};