2018-05-25 08:03:45 +00:00
|
|
|
import ngModule from '../../module';
|
2020-03-18 07:35:59 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-07-17 06:44:31 +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: [
|
|
|
|
{
|
2019-01-22 09:04:42 +00:00
|
|
|
relation: 'worker',
|
2018-07-17 06:44:31 +00:00
|
|
|
scope: {
|
2019-02-15 11:39:21 +00:00
|
|
|
fields: ['userFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'user',
|
|
|
|
scope: {
|
2020-09-03 13:11:16 +00:00
|
|
|
fields: ['name']
|
2019-02-15 11:39:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-17 06:44:31 +00:00
|
|
|
}
|
2020-04-28 12:26:02 +00:00
|
|
|
}, {
|
2019-01-22 09:04:42 +00:00
|
|
|
relation: 'state',
|
2018-07-17 06:44:31 +00:00
|
|
|
scope: {
|
2019-01-22 09:04:42 +00:00
|
|
|
fields: ['name']
|
2018-07-17 06:44:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketTrackingIndex', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-07-17 06:44:31 +00:00
|
|
|
controller: Controller
|
2018-05-25 08:03:45 +00:00
|
|
|
});
|