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

36 lines
740 B
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 filter = {
2024-04-15 12:44:18 +00:00
where: {
id: value.id
}
2019-01-29 20:45:43 +00:00
};
2024-04-15 12:44:18 +00:00
this.$http.get(`Workers/summary`, {filter}).then(res => {
this.$.worker = res.data[0];
2019-01-29 20:45:43 +00:00
});
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: '<'
}
});