2019-07-30 06:51:38 +00:00
|
|
|
import ngModule from '../../module';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
class Controller {
|
2019-10-09 22:47:29 +00:00
|
|
|
constructor($stateParams, $scope, $http, $translate, vnToken, vnApp, vnConfig) {
|
2019-07-30 06:51:38 +00:00
|
|
|
this.$stateParams = $stateParams;
|
|
|
|
this.$ = $scope;
|
|
|
|
this.$http = $http;
|
|
|
|
this.$translate = $translate;
|
|
|
|
this.accessToken = vnToken.token;
|
|
|
|
this.vnApp = vnApp;
|
2019-10-09 22:47:29 +00:00
|
|
|
this.vnConfig = vnConfig;
|
2019-07-30 06:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
2019-10-30 15:57:14 +00:00
|
|
|
if (response === 'accept') {
|
2019-09-30 12:57:54 +00:00
|
|
|
const dmsFk = this.photos[this.dmsIndex].dmsFk;
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `claimDms/${dmsFk}/removeFile`;
|
2019-07-30 06:51:38 +00:00
|
|
|
this.$http.post(query).then(() => {
|
|
|
|
this.$.model.remove(this.dmsIndex);
|
2019-09-30 12:57:54 +00:00
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Photo deleted'));
|
2019-07-30 06:51:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-09-30 12:57:54 +00:00
|
|
|
|
2019-10-16 06:56:13 +00:00
|
|
|
onDrop($event) {
|
|
|
|
const files = $event.dataTransfer.files;
|
2019-09-30 12:57:54 +00:00
|
|
|
this.setDefaultParams().then(() => {
|
|
|
|
this.dms.files = files;
|
|
|
|
this.create();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
setDefaultParams() {
|
|
|
|
const params = {filter: {
|
|
|
|
where: {code: 'claim'}
|
|
|
|
}};
|
2019-10-24 22:53:53 +00:00
|
|
|
return this.$http.get('DmsTypes/findOne', {params}).then(res => {
|
2019-09-30 12:57:54 +00:00
|
|
|
const dmsTypeId = res.data && res.data.id;
|
2019-10-09 22:47:29 +00:00
|
|
|
const companyId = this.vnConfig.companyFk;
|
|
|
|
const warehouseId = this.vnConfig.warehouseFk;
|
2019-09-30 12:57:54 +00:00
|
|
|
this.dms = {
|
|
|
|
hasFile: false,
|
|
|
|
hasFileAttached: false,
|
|
|
|
reference: this.claim.id,
|
|
|
|
warehouseId: warehouseId,
|
|
|
|
companyId: companyId,
|
|
|
|
dmsTypeId: dmsTypeId,
|
|
|
|
description: this.$translate.instant('FileDescription', {
|
|
|
|
claimId: this.claim.id,
|
|
|
|
clientId: this.claim.client.id,
|
|
|
|
clientName: this.claim.client.name
|
|
|
|
}).toUpperCase()
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-08 16:03:08 +00:00
|
|
|
openUploadDialog() {
|
|
|
|
const element = document.createElement('input');
|
|
|
|
element.setAttribute('type', 'file');
|
|
|
|
element.setAttribute('multiple', true);
|
|
|
|
element.click();
|
|
|
|
|
|
|
|
element.addEventListener('change', () =>
|
|
|
|
this.setDefaultParams().then(() => {
|
|
|
|
this.dms.files = element.files;
|
|
|
|
this.create();
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2019-09-30 12:57:54 +00:00
|
|
|
|
|
|
|
create() {
|
2019-10-24 22:53:53 +00:00
|
|
|
const query = `claims/${this.claim.id}/uploadFile`;
|
2019-09-30 12:57:54 +00:00
|
|
|
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(() => {
|
|
|
|
this.vnApp.showSuccess(this.$translate.instant('Photo uploaded!'));
|
|
|
|
this.$.model.refresh();
|
|
|
|
});
|
|
|
|
}
|
2019-07-30 06:51:38 +00:00
|
|
|
}
|
|
|
|
|
2019-10-09 22:47:29 +00:00
|
|
|
Controller.$inject = ['$stateParams', '$scope', '$http', '$translate', 'vnToken', 'vnApp', 'vnConfig'];
|
2019-07-30 06:51:38 +00:00
|
|
|
|
|
|
|
ngModule.component('vnClaimDmsIndex', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
2019-09-30 12:57:54 +00:00
|
|
|
bindings: {
|
|
|
|
claim: '<'
|
|
|
|
}
|
2019-07-30 06:51:38 +00:00
|
|
|
});
|