2023-01-17 10:45:50 +00:00
|
|
|
const Component = require(`vn-print/core/component`);
|
2023-06-20 06:58:22 +00:00
|
|
|
const emailBody = new Component('email-body');
|
2023-01-17 10:45:50 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'entry-update-comission',
|
|
|
|
components: {
|
2023-06-20 06:58:22 +00:00
|
|
|
'email-body': emailBody.build(),
|
2023-01-17 10:45:50 +00:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
currencyName: {
|
2023-06-20 06:58:22 +00:00
|
|
|
type: String,
|
2023-01-17 10:45:50 +00:00
|
|
|
required: true
|
|
|
|
},
|
|
|
|
referenceCurrent: {
|
2023-06-20 06:58:22 +00:00
|
|
|
type: Number,
|
2023-01-17 10:45:50 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|