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-10-29 06:46:44 +00:00
|
|
|
const emailHeader = new Component('email-header');
|
|
|
|
const emailFooter = new Component('email-footer');
|
2019-11-07 10:19:05 +00:00
|
|
|
const attachment = new Component('attachment');
|
|
|
|
const attachments = require('./attachments.json');
|
2019-10-29 06:46:44 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'printer-setup',
|
|
|
|
async serverPrefetch() {
|
|
|
|
this.client = await this.fetchClient(this.clientId);
|
|
|
|
},
|
2019-11-07 10:19:05 +00:00
|
|
|
data() {
|
|
|
|
return {attachments};
|
|
|
|
},
|
2019-10-29 06:46:44 +00:00
|
|
|
methods: {
|
|
|
|
fetchClient(clientId) {
|
|
|
|
return db.findOne(`
|
|
|
|
SELECT
|
|
|
|
c.id,
|
|
|
|
u.lang locale,
|
|
|
|
u.name AS userName,
|
|
|
|
c.email recipient,
|
|
|
|
CONCAT(w.lastName, ' ', 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 = ?`, [clientId]);
|
2019-11-19 13:52:38 +00:00
|
|
|
}
|
2019-10-29 06:46:44 +00:00
|
|
|
},
|
|
|
|
components: {
|
|
|
|
'email-header': emailHeader.build(),
|
2019-11-07 10:19:05 +00:00
|
|
|
'email-footer': emailFooter.build(),
|
|
|
|
'attachment': attachment.build()
|
2019-10-29 06:46:44 +00:00
|
|
|
},
|
2019-11-04 12:55:20 +00:00
|
|
|
props: {
|
|
|
|
clientId: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
2019-10-29 06:46:44 +00:00
|
|
|
};
|