2018-07-31 09:08:22 +00:00
|
|
|
import ngModule from '../../module';
|
2020-03-17 10:17:50 +00:00
|
|
|
import Section from 'salix/components/section';
|
2018-07-31 09:08:22 +00:00
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
2018-07-31 09:08:22 +00:00
|
|
|
this.filter = {
|
|
|
|
include: [
|
|
|
|
{
|
2019-01-29 14:04:38 +00:00
|
|
|
relation: 'type',
|
2018-07-31 09:08:22 +00:00
|
|
|
scope: {
|
2019-01-29 14:04:38 +00:00
|
|
|
fields: ['code', 'description']
|
2018-07-31 09:08:22 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-01-29 14:04:38 +00:00
|
|
|
relation: 'worker',
|
2018-07-31 09:08:22 +00:00
|
|
|
scope: {
|
2019-01-31 13:14:39 +00:00
|
|
|
fields: ['userFk'],
|
|
|
|
include: {
|
|
|
|
relation: 'user',
|
|
|
|
scope: {
|
|
|
|
fields: ['nickname']
|
|
|
|
}
|
|
|
|
}
|
2018-07-31 09:08:22 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2019-01-29 14:04:38 +00:00
|
|
|
relation: 'company',
|
2018-07-31 09:08:22 +00:00
|
|
|
scope: {
|
2019-01-29 14:04:38 +00:00
|
|
|
fields: ['code']
|
2018-07-31 09:08:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
2019-05-22 05:50:08 +00:00
|
|
|
showWorkerDescriptor(event, workerFk) {
|
|
|
|
if (event.defaultPrevented) return;
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
|
|
|
|
this.selectedWorker = workerFk;
|
|
|
|
this.$.workerDescriptor.parent = event.target;
|
|
|
|
this.$.workerDescriptor.show();
|
|
|
|
}
|
2018-07-31 09:08:22 +00:00
|
|
|
}
|
|
|
|
|
2020-03-17 10:17:50 +00:00
|
|
|
Controller.$inject = ['$element', '$scope'];
|
2018-07-31 09:08:22 +00:00
|
|
|
|
|
|
|
ngModule.component('vnClientSampleIndex', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|