2022-09-26 06:07:45 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2022-11-10 08:51:28 +00:00
|
|
|
const emailBody = new Component('email-body');
|
2019-11-07 10:19:05 +00:00
|
|
|
const attachments = require('./attachments.json');
|
2019-11-04 12:55:20 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'sepa-core',
|
2019-11-07 10:19:05 +00:00
|
|
|
data() {
|
|
|
|
return {attachments};
|
|
|
|
},
|
2019-11-04 12:55:20 +00:00
|
|
|
components: {
|
2022-11-10 10:51:14 +00:00
|
|
|
'email-body': emailBody.build()
|
2019-11-07 10:19:05 +00:00
|
|
|
},
|
|
|
|
props: {
|
2022-09-26 06:07:45 +00:00
|
|
|
id: {
|
2022-10-28 13:53:57 +00:00
|
|
|
type: Number,
|
2019-11-07 10:19:05 +00:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
companyId: {
|
2022-10-28 13:53:57 +00:00
|
|
|
type: Number,
|
2019-11-07 10:19:05 +00:00
|
|
|
required: true
|
|
|
|
}
|
2019-11-04 12:55:20 +00:00
|
|
|
}
|
|
|
|
};
|