salix/print/templates/email/book-entry-deleted/book-entry-deleted.js

20 lines
406 B
JavaScript
Raw Normal View History

2023-09-04 09:59:55 +00:00
const Component = require(`vn-print/core/component`);
const emailBody = new Component();
module.exports = {
name: 'book-entries-deleted',
components: {
'email-body': emailBody.build(),
},
props: {
bookEntries: {
type: Number,
required: true
},
invoiceOutRef: {
type: String,
required: true
}
}
};