2018-03-26 13:10:51 +00:00
|
|
|
import ngModule from '../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-03-26 13:10:51 +00:00
|
|
|
|
2020-03-18 07:35:59 +00:00
|
|
|
class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2018-07-17 06:44:31 +00:00
|
|
|
this.filter = {
|
2020-04-30 10:48:52 +00:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
relation: 'item'
|
|
|
|
}, {
|
|
|
|
relation: 'isChecked',
|
|
|
|
scope: {
|
|
|
|
fields: ['isChecked']
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
}
|
2020-04-30 10:48:52 +00:00
|
|
|
]
|
2018-07-17 06:44:31 +00:00
|
|
|
};
|
2018-03-26 13:10:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('vnTicketSaleChecked', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-09-04 09:49:00 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
}
|
2018-03-26 13:10:51 +00:00
|
|
|
});
|