salix/print/templates/email/printer-setup/printer-setup.js

32 lines
875 B
JavaScript
Raw Normal View History

2019-11-04 12:55:20 +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');
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() {
2020-05-22 13:20:55 +00:00
this.client = await this.fetchClient(this.recipientId);
2019-10-29 06:46:44 +00:00
},
data() {
return {attachments};
},
2019-10-29 06:46:44 +00:00
methods: {
fetchClient(clientId) {
2020-09-25 12:45:00 +00:00
return db.findOneFromDef('client', [clientId], __dirname);
2019-11-19 13:52:38 +00:00
}
2019-10-29 06:46:44 +00:00
},
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
2019-10-29 06:46:44 +00:00
},
2019-11-04 12:55:20 +00:00
props: {
2020-05-22 13:20:55 +00:00
recipientId: {
2019-11-04 12:55:20 +00:00
required: true
}
}
2019-10-29 06:46:44 +00:00
};