52 lines
1.6 KiB
JavaScript
52 lines
1.6 KiB
JavaScript
|
const database = require(`${appPath}/lib/database`);
|
||
|
const emailHeader = require('../email-header');
|
||
|
const emailFooter = require('../email-footer');
|
||
|
const UserException = require(`${appPath}/lib/exceptions/userException`);
|
||
|
|
||
|
module.exports = {
|
||
|
name: 'printer-setup',
|
||
|
async asyncData(ctx, params) {
|
||
|
const data = {
|
||
|
isPreview: ctx.method === 'GET',
|
||
|
};
|
||
|
|
||
|
if (!params.clientFk)
|
||
|
throw new UserException('No client id specified');
|
||
|
|
||
|
return this.methods.fetchClientData(params.clientFk)
|
||
|
.then(([result]) => {
|
||
|
return Object.assign(data, result[0]);
|
||
|
});
|
||
|
},
|
||
|
created() {
|
||
|
this.$i18n.locale = this.locale;
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
attachments: ['/assets/files/model.ezp'],
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
fetchClientData(clientFk) {
|
||
|
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': emailHeader,
|
||
|
'email-footer': emailFooter,
|
||
|
},
|
||
|
};
|