import ngModule from '../../module'; import Section from 'salix/components/section'; class Controller extends Section { constructor($element, $) { super($element, $); this.dms = {files: [], state: 'Ok'}; } get travel() { return this._travel; } set travel(value) { this._travel = value; if (value) { this.setDefaultParams(); this.getAllowedContentTypes(); } } getAllowedContentTypes() { this.$http.get('TravelThermographs/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: '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`; 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 => { this.vnApp.showSuccess(this.$translate.instant('Data saved!')); this.$.watcher.updateOriginalData(); this.$state.go('travel.card.thermograph.index'); }); } } ngModule.component('vnTravelThermographCreate', { template: require('./index.html'), controller: Controller, bindings: { travel: '<' } });