118 lines
3.2 KiB
JavaScript
118 lines
3.2 KiB
JavaScript
|
import ngModule from '../../module';
|
||
|
import './style.scss';
|
||
|
|
||
|
class Controller {
|
||
|
constructor($scope, $http, $state, $translate, vnApp, vnConfig) {
|
||
|
this.$ = $scope;
|
||
|
this.$http = $http;
|
||
|
this.$state = $state;
|
||
|
this.$translate = $translate;
|
||
|
this.vnApp = vnApp;
|
||
|
this.vnConfig = vnConfig;
|
||
|
this.dms = {
|
||
|
files: [],
|
||
|
hasFile: false,
|
||
|
hasFileAttached: false
|
||
|
};
|
||
|
}
|
||
|
|
||
|
get worker() {
|
||
|
return this._worker;
|
||
|
}
|
||
|
|
||
|
set worker(value) {
|
||
|
this._worker = value;
|
||
|
|
||
|
if (value) {
|
||
|
this.setDefaultParams();
|
||
|
this.getAllowedContentTypes();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
getAllowedContentTypes() {
|
||
|
this.$http.get('workerDms/allowedContentTypes').then(res => {
|
||
|
const contentTypes = res.data.join(', ');
|
||
|
this.allowedContentTypes = contentTypes;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
get contentTypesInfo() {
|
||
|
return this.$translate.instant('ContentTypesInfo', {
|
||
|
allowedContentTypes: this.allowedContentTypes
|
||
|
});
|
||
|
}
|
||
|
|
||
|
setDefaultParams() {
|
||
|
const params = {filter: {
|
||
|
where: {code: 'hhrrData'}
|
||
|
}};
|
||
|
this.$http.get('DmsTypes/findOne', {params}).then(res => {
|
||
|
const dmsType = res.data && res.data;
|
||
|
const companyId = this.vnConfig.companyFk;
|
||
|
const warehouseId = this.vnConfig.warehouseFk;
|
||
|
const defaultParams = {
|
||
|
reference: this.worker.id,
|
||
|
warehouseId: warehouseId,
|
||
|
companyId: companyId,
|
||
|
dmsTypeId: dmsType.id,
|
||
|
description: this.$translate.instant('WorkerFileDescription', {
|
||
|
dmsTypeName: dmsType.name,
|
||
|
workerId: this.worker.id,
|
||
|
workerName: this.worker.name
|
||
|
}).toUpperCase()
|
||
|
};
|
||
|
|
||
|
this.dms = Object.assign(this.dms, defaultParams);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
onSubmit() {
|
||
|
const query = `Workers/${this.worker.id}/uploadFile`;
|
||
|
const options = {
|
||
|
method: 'POST',
|
||
|
url: query,
|
||
|
params: this.dms,
|
||
|
headers: {
|
||
|
'Content-Type': undefined
|
||
|
},
|
||
|
transformRequest: files => {
|
||
|
const formData = new FormData();
|
||
|
|
||
|
for (let i = 0; i < files.length; i++)
|
||
|
formData.append(files[i].name, files[i]);
|
||
|
|
||
|
return formData;
|
||
|
},
|
||
|
data: this.dms.files
|
||
|
};
|
||
|
this.$http(options).then(res => {
|
||
|
if (res) {
|
||
|
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
|
||
|
this.$.watcher.updateOriginalData();
|
||
|
this.$state.go('worker.card.dms.index');
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
onFileChange(files) {
|
||
|
let hasFileAttached = false;
|
||
|
|
||
|
if (files.length > 0)
|
||
|
hasFileAttached = true;
|
||
|
|
||
|
this.$.$applyAsync(() => {
|
||
|
this.dms.hasFileAttached = hasFileAttached;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Controller.$inject = ['$scope', '$http', '$state', '$translate', 'vnApp', 'vnConfig'];
|
||
|
|
||
|
ngModule.component('vnWorkerDmsCreate', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
worker: '<'
|
||
|
}
|
||
|
});
|