salix/print/report/client-welcome/index.js

47 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-01-22 08:55:35 +00:00
const database = require(`${appPath}/lib/database`);
const UserException = require(`${appPath}/lib/exceptions/userException`);
module.exports = {
name: 'client-welcome',
async asyncData(ctx, params) {
const data = {
isPreview: ctx.method === 'GET',
};
if (!params.clientFk)
throw new UserException('No client id specified');
return this.methods.fetchClient(params.clientFk)
2019-01-22 08:55:35 +00:00
.then(([result]) => {
2019-01-25 14:08:11 +00:00
if (!result)
throw new UserException('No client data found');
2019-01-22 08:55:35 +00:00
return Object.assign(data, result[0]);
});
},
created() {
this.$i18n.locale = this.locale;
},
methods: {
fetchClient(clientFk) {
2019-01-22 08:55:35 +00:00
return database.pool.query(`
SELECT
c.id,
u.lang locale,
u.name AS userName,
c.email recipient,
CONCAT(w.name, ' ', w.firstName) salesPersonName,
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
WHERE c.id = ?`, [clientFk]);
},
},
components: {
'email-header': require('../email-header'),
'email-footer': require('../email-footer'),
2019-01-22 08:55:35 +00:00
},
};