59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
import ngModule from '../module';
|
|
|
|
class Controller {
|
|
constructor($http, $stateParams) {
|
|
Object.assign(this, {
|
|
$http,
|
|
$stateParams,
|
|
});
|
|
}
|
|
|
|
$onInit() {
|
|
this.reload();
|
|
}
|
|
|
|
reload() {
|
|
let query = `api/Workers/${this.$stateParams.id}`;
|
|
let filter = {
|
|
include: [
|
|
{
|
|
relation: 'user',
|
|
scope: {
|
|
fields: ['name'],
|
|
include: {
|
|
relation: 'emailUser',
|
|
scope: {
|
|
fields: ['email']
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
relation: 'sip',
|
|
scope: {
|
|
fields: ['extension', 'secret']
|
|
}
|
|
}, {
|
|
relation: 'department',
|
|
scope: {
|
|
include: {
|
|
relation: 'department'
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
this.$http.get(query, {params: {filter}}).then(res => {
|
|
this.worker = res.data;
|
|
});
|
|
}
|
|
}
|
|
|
|
Controller.$inject = ['$http', '$stateParams'];
|
|
|
|
ngModule.component('vnWorkerCard', {
|
|
template: require('./index.html'),
|
|
controller: Controller
|
|
});
|