2022-09-19 10:59:32 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2022-11-10 08:51:28 +00:00
|
|
|
const emailBody = new Component('email-body');
|
2019-09-06 09:06:44 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'delivery-note',
|
|
|
|
components: {
|
2022-11-10 08:51:28 +00:00
|
|
|
'email-body': emailBody.build(),
|
2019-09-06 09:06:44 +00:00
|
|
|
},
|
2019-10-31 11:43:04 +00:00
|
|
|
props: {
|
2022-09-22 06:48:29 +00:00
|
|
|
id: {
|
2022-10-28 13:53:57 +00:00
|
|
|
type: Number,
|
2019-10-31 11:43:04 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
2019-09-06 09:06:44 +00:00
|
|
|
};
|