salix/print/templates/email/client-debt-statement/client-debt-statement.js

34 lines
868 B
JavaScript
Raw Normal View History

2022-09-22 07:42:04 +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: 'client-debt-statement',
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
data() {
2022-10-04 11:41:37 +00:00
return {
attachments: [
{
filename: 'client-debt-statement.pdf',
type: 'pdf',
path: `Clients/${this.id}/client-debt-statement-pdf`
}
]
};
},
props: {
2022-09-22 07:42:04 +00:00
id: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
required: true
},
from: {
required: true
}
}
};