salix/modules/ticket/front/tracking/index/index.js

35 lines
925 B
JavaScript
Raw Normal View History

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: {
fields: ['userFk'],
include: {
relation: 'user',
scope: {
2020-09-03 13:11:16 +00:00
fields: ['name']
}
}
2018-07-17 06:44:31 +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
}
}
]
};
}
}
ngModule.vnComponent('vnTicketTrackingIndex', {
template: require('./index.html'),
2018-07-17 06:44:31 +00:00
controller: Controller
});