salix/modules/travel/front/thermograph/create/index.js

92 lines
2.6 KiB
JavaScript
Raw Normal View History

2020-01-17 07:43:10 +00:00
import ngModule from '../../module';
2020-03-18 11:55:22 +00:00
import Section from 'salix/components/section';
2020-01-17 07:43:10 +00:00
2020-03-18 11:55:22 +00:00
class Controller extends Section {
constructor($element, $) {
super($element, $);
2020-02-28 06:17:19 +00:00
this.dms = {files: [], state: 'Ok'};
2020-01-17 07:43:10 +00:00
}
get travel() {
return this._travel;
}
set travel(value) {
this._travel = value;
if (value) {
this.setDefaultParams();
this.getAllowedContentTypes();
}
}
getAllowedContentTypes() {
2020-01-22 08:04:26 +00:00
this.$http.get('TravelThermographs/allowedContentTypes').then(res => {
2020-01-17 07:43:10 +00:00
const contentTypes = res.data.join(', ');
this.allowedContentTypes = contentTypes;
});
}
get contentTypesInfo() {
return this.$translate.instant('ContentTypesInfo', {
allowedContentTypes: this.allowedContentTypes
});
}
setDefaultParams() {
const params = {filter: {
where: {code: 'miscellaneous'}
}};
this.$http.get('DmsTypes/findOne', {params}).then(res => {
const dmsTypeId = res.data && res.data.id;
const companyId = this.vnConfig.companyFk;
const warehouseId = this.vnConfig.warehouseFk;
const defaultParams = {
reference: this.travel.id,
warehouseId: warehouseId,
companyId: companyId,
dmsTypeId: dmsTypeId,
description: this.$translate.instant('FileDescription', {
travelId: this.travel.id
}).toUpperCase()
};
this.dms = Object.assign(this.dms, defaultParams);
});
}
onSubmit() {
const query = `Travels/${this.travel.id}/createThermograph`;
2020-01-17 07:43:10 +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(res => {
2020-01-22 08:04:26 +00:00
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
this.$.watcher.updateOriginalData();
this.$state.go('travel.card.thermograph.index');
2020-01-17 07:43:10 +00:00
});
}
}
ngModule.component('vnTravelThermographCreate', {
template: require('./index.html'),
controller: Controller,
bindings: {
travel: '<'
}
});