32 lines
812 B
JavaScript
Executable File
32 lines
812 B
JavaScript
Executable File
const Component = require(`vn-print/core/component`);
|
|
const emailHeader = new Component('email-header');
|
|
const emailFooter = new Component('email-footer');
|
|
const attachment = new Component('attachment');
|
|
const attachments = require('./attachments.json');
|
|
|
|
module.exports = {
|
|
name: 'printer-setup',
|
|
async serverPrefetch() {
|
|
this.client = await this.fetchClient(this.id);
|
|
},
|
|
data() {
|
|
return {attachments};
|
|
},
|
|
methods: {
|
|
fetchClient(id) {
|
|
return this.findOneFromDef('client', [id]);
|
|
}
|
|
},
|
|
components: {
|
|
'email-header': emailHeader.build(),
|
|
'email-footer': emailFooter.build(),
|
|
'attachment': attachment.build()
|
|
},
|
|
props: {
|
|
id: {
|
|
type: Number,
|
|
required: true
|
|
}
|
|
}
|
|
};
|