80 lines
2.4 KiB
JavaScript
80 lines
2.4 KiB
JavaScript
import ngModule from '../../module';
|
|
import './style.scss';
|
|
|
|
class Controller {
|
|
constructor($stateParams, $scope, vnToken, $http, vnApp, $translate) {
|
|
this.$stateParams = $stateParams;
|
|
this.$ = $scope;
|
|
this.accessToken = vnToken.token;
|
|
this.$http = $http;
|
|
this.vnApp = vnApp;
|
|
this.$translate = $translate;
|
|
this.filter = {
|
|
include: {
|
|
relation: 'dms',
|
|
scope: {
|
|
fields: [
|
|
'dmsTypeFk',
|
|
'reference',
|
|
'hardCopyNumber',
|
|
'workerFk',
|
|
'description',
|
|
'hasFile',
|
|
'file',
|
|
'created',
|
|
],
|
|
include: [{
|
|
relation: 'dmsType',
|
|
scope: {
|
|
fields: ['name']
|
|
}
|
|
},
|
|
{
|
|
relation: 'worker',
|
|
scope: {
|
|
fields: ['userFk'],
|
|
include: {
|
|
relation: 'user',
|
|
scope: {
|
|
fields: ['nickname']
|
|
}
|
|
},
|
|
}
|
|
}]
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
showWorkerDescriptor(event, workerFk) {
|
|
event.preventDefault();
|
|
event.stopImmediatePropagation();
|
|
this.$.workerDescriptor.parent = event.target;
|
|
this.$.workerDescriptor.workerFk = workerFk;
|
|
this.$.workerDescriptor.show();
|
|
}
|
|
|
|
showDeleteConfirm(index) {
|
|
this.dmsIndex = index;
|
|
this.$.confirm.show();
|
|
}
|
|
|
|
deleteDms(response) {
|
|
if (response === 'ACCEPT') {
|
|
const dmsFk = this.clientDms[this.dmsIndex].dmsFk;
|
|
const query = `/api/clientDms/${dmsFk}/removeFile`;
|
|
this.$http.post(query).then(() => {
|
|
this.$.model.remove(this.dmsIndex);
|
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
Controller.$inject = ['$stateParams', '$scope', 'vnToken', '$http', 'vnApp', '$translate'];
|
|
|
|
ngModule.component('vnClientDmsIndex', {
|
|
template: require('./index.html'),
|
|
controller: Controller,
|
|
});
|