salix/print/templates/email/incoterms-authorization/incoterms-authorization.js

36 lines
937 B
JavaScript
Raw Normal View History

2022-09-26 11:33:27 +00:00
const Component = require(`vn-print/core/component`);
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
const attachment = new Component('attachment');
module.exports = {
name: 'incoterms-authorization',
data() {
2022-10-04 11:41:37 +00:00
return {
attachments: [
{
filename: 'incoterms-authorization.pdf',
type: 'pdf',
path: `Clients/${this.id}/incoterms-authorization-pdf`
}
]
};
},
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
props: {
2022-09-26 06:07:45 +00:00
id: {
2022-10-28 13:53:57 +00:00
type: Number,
2022-09-29 05:35:20 +00:00
required: true,
description: 'The client id'
2022-06-13 09:03:11 +00:00
},
companyId: {
2022-10-28 13:53:57 +00:00
type: Number,
required: true
}
}
};