45 lines
938 B
JavaScript
45 lines
938 B
JavaScript
|
import ngModule from '../module';
|
||
|
import './style.scss';
|
||
|
|
||
|
class Controller {
|
||
|
constructor($scope, $http) {
|
||
|
this.$ = $scope;
|
||
|
this.$http = $http;
|
||
|
}
|
||
|
|
||
|
get travel() {
|
||
|
return this._travel;
|
||
|
}
|
||
|
|
||
|
set travel(value) {
|
||
|
this._travel = value;
|
||
|
|
||
|
if (value && value.id) {
|
||
|
this.getTravel();
|
||
|
this.getEntries();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
Controller.$inject = ['$scope', '$http'];
|
||
|
|
||
|
ngModule.component('vnTravelSummary', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
travel: '<'
|
||
|
}
|
||
|
});
|