salix/modules/travel/front/summary/index.js

78 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-10-24 10:49:18 +00:00
import ngModule from '../module';
import './style.scss';
2020-01-13 10:53:10 +00:00
import Component from 'core/lib/component';
2019-10-24 10:49:18 +00:00
2020-01-13 10:53:10 +00:00
class Controller extends Component {
constructor($element, $, $httpParamSerializer) {
super($element, $);
2020-01-08 12:52:04 +00:00
this.entries = [];
2020-01-13 10:53:10 +00:00
this.$httpParamSerializer = $httpParamSerializer;
2019-10-24 10:49:18 +00:00
}
get travel() {
return this._travel;
}
set travel(value) {
this._travel = value;
if (value && value.id) {
this.getTravel();
this.getEntries();
2020-01-13 10:53:10 +00:00
this.getThermographs();
2019-10-24 10:49:18 +00:00
}
}
getTravel() {
return this.$http.get(`/api/Travels/${this.travel.id}/getTravel`).then(response => {
this.travelData = response.data;
});
}
getEntries() {
return this.$http.get(`/api/Travels/${this.travel.id}/getEntries`).then(response => {
this.entries = response.data;
});
}
2020-01-08 12:52:04 +00:00
2020-01-13 10:53:10 +00:00
getThermographs() {
const params = {
filter: {
include: {
relation: 'warehouse',
scope: {
fields: ['id', 'name']
}
},
where: {
travelFk: this.travel.id
}
}
};
const serializedParams = this.$httpParamSerializer(params);
return this.$http.get(`TravelThermographs?${serializedParams}`).then(res => {
this.travelThermographs = res.data;
});
}
2020-01-08 12:52:04 +00:00
total(field) {
let total = 0;
for (let entry of this.entries)
total += entry[field];
return total;
}
2019-10-24 10:49:18 +00:00
}
2020-01-13 10:53:10 +00:00
Controller.$inject = ['$element', '$scope', '$httpParamSerializer'];
2019-10-24 10:49:18 +00:00
ngModule.component('vnTravelSummary', {
template: require('./index.html'),
controller: Controller,
bindings: {
travel: '<'
}
});