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

75 lines
2.0 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';
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;
2021-02-24 15:12:44 +00:00
const query = `Workers/${value.id}`;
const filter = {
2019-01-29 20:45:43 +00:00
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
}
2021-02-24 15:12:44 +00:00
},
{
2019-01-29 20:45:43 +00:00
relation: 'client',
scope: {fields: ['fi', 'phone']}
2021-02-24 15:12:44 +00:00
},
{
2021-02-19 16:45:45 +00:00
relation: 'boss',
2023-07-04 07:57:16 +00:00
scope: {fields: ['id', 'name']}
2021-02-24 15:12:44 +00:00
},
{
2019-01-29 20:45:43 +00:00
relation: 'sip',
scope: {fields: ['extension']}
2021-02-24 15:12:44 +00:00
},
{
2019-02-18 11:54:33 +00:00
relation: 'department',
scope: {
include: {
2023-05-30 12:02:34 +00:00
relation: 'department',
scope: {fields: ['id', 'code', 'name']}
2019-02-18 11:54:33 +00:00
}
}
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: '<'
}
});