salix/modules/ticket/front/sale-checked/index.js

29 lines
649 B
JavaScript
Raw Normal View History

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 = {
include: [
{
relation: 'item'
}, {
relation: 'isChecked',
scope: {
fields: ['isChecked']
}
2018-07-17 06:44:31 +00:00
}
]
2018-07-17 06:44:31 +00:00
};
2018-03-26 13:10:51 +00:00
}
}
ngModule.component('vnTicketSaleChecked', {
template: require('./index.html'),
2018-09-04 09:49:00 +00:00
controller: Controller,
bindings: {
ticket: '<'
}
2018-03-26 13:10:51 +00:00
});