salix/print/templates/email/credit-request/credit-request.js

31 lines
783 B
JavaScript
Raw Normal View History

2022-09-22 07:42:04 +00:00
const Component = require(`vn-print/core/component`);
2021-07-19 08:16:15 +00:00
const emailHeader = new Component('email-header');
const emailFooter = new Component('email-footer');
const attachment = new Component('attachment');
module.exports = {
name: 'credit-request',
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
data() {
2022-10-04 11:41:37 +00:00
return {
attachments: [
{
filename: 'credit-request.pdf',
type: 'pdf',
path: `Clients/${this.id}/credit-request-pdf`
}
]
};
2021-07-19 08:16:15 +00:00
},
2022-10-04 11:41:37 +00:00
props: {
id: {
type: Number,
required: true
}
}
2021-07-19 08:16:15 +00:00
};