salix/modules/worker/front/department/card/index.js

34 lines
1018 B
JavaScript
Raw Normal View History

2023-05-16 06:54:54 +00:00
import ngModule from '../../module';
2023-05-15 11:15:33 +00:00
import ModuleCard from 'salix/components/module-card';
class Controller extends ModuleCard {
reload() {
const filter = {
2023-05-17 07:05:28 +00:00
fields: ['id', 'name', 'code', 'workerFk', 'isProduction', 'chatName',
2023-05-26 12:23:34 +00:00
'isTeleworking', 'notificationEmail', 'hasToRefill', 'hasToSendMail', 'hasToMistake', 'clientFk'],
2023-05-15 11:15:33 +00:00
include: [
2023-06-22 13:00:59 +00:00
{
relation: 'client',
scope: {
fields: ['id', 'name']
2023-06-22 13:00:59 +00:00
}
}, {
2023-05-15 11:15:33 +00:00
relation: 'worker',
scope: {
fields: ['id', 'firstName', 'lastName']
}
2023-05-15 11:15:33 +00:00
}
]
2023-06-22 13:20:28 +00:00
2023-05-15 11:15:33 +00:00
};
this.$http.get(`Departments/${this.$params.id}`, {filter})
.then(res => this.department = res.data);
}
}
ngModule.vnComponent('vnWorkerDepartmentCard', {
template: require('./index.html'),
controller: Controller
});