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

27 lines
690 B
JavaScript
Raw Normal View History

const Component = require(`${appPath}/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: 'client-debt-statement',
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
data() {
return {attachments};
},
props: {
recipientId: {
2022-01-17 11:44:43 +00:00
type: [Number, String],
required: true
},
from: {
required: true
}
}
};