salix/modules/worker/front/summary/index.js

68 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-01-28 15:24:45 +00:00
import ngModule from '../module';
2020-11-23 12:41:51 +00:00
import Summary from 'salix/components/summary';
2019-01-28 15:24:45 +00:00
2020-11-23 12:41:51 +00:00
class Controller extends Summary {
2019-01-28 15:24:45 +00:00
get worker() {
return this._worker;
}
set worker(value) {
this._worker = value;
this.$.worker = null;
2019-01-29 20:45:43 +00:00
if (!value) return;
let query = `Workers/${value.id}`;
2019-01-29 20:45:43 +00:00
let filter = {
include: [
{
relation: 'user',
scope: {
2019-03-15 11:58:26 +00:00
fields: ['name', 'roleFk'],
include: [{
2019-01-29 20:45:43 +00:00
relation: 'role',
2019-03-15 11:58:26 +00:00
scope: {
fields: ['name']
}
},
{
relation: 'emailUser',
scope: {
fields: ['email']
}
}]
2019-01-29 20:45:43 +00:00
}
}, {
relation: 'client',
scope: {fields: ['fi']}
}, {
relation: 'sip',
scope: {fields: ['extension']}
2019-02-18 11:54:33 +00:00
}, {
relation: 'department',
scope: {
include: {
relation: 'department'
}
}
2019-01-29 20:45:43 +00:00
}
]
};
this.$http.get(query, {params: {filter}}).then(res => {
this.$.worker = res.data;
});
2019-01-28 15:24:45 +00:00
}
get isHr() {
return this.aclService.hasAny(['hr']);
}
2019-01-28 15:24:45 +00:00
}
ngModule.vnComponent('vnWorkerSummary', {
2019-01-28 15:24:45 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
worker: '<'
}
});