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

43 lines
973 B
JavaScript
Raw Normal View History

2019-03-22 10:10:23 +00:00
import ngModule from '../module';
2020-11-23 12:41:51 +00:00
import Summary from 'salix/components/summary';
2019-03-22 10:10:23 +00:00
import './style.scss';
2020-11-23 12:41:51 +00:00
class Controller extends Summary {
2019-03-22 10:10:23 +00:00
set route(value) {
this._route = value;
if (value && value.id)
this.getSummary();
}
sumPackages() {
this.packagesTotal = 0;
2019-03-25 12:16:34 +00:00
this.summary.tickets.forEach(ticket => {
2019-03-22 10:10:23 +00:00
this.packagesTotal += ticket.packages;
});
}
get isDelivery() {
return this.aclService.hasAny(['delivery']);
}
2019-03-22 10:10:23 +00:00
get route() {
return this._route;
}
getSummary() {
this.$http.get(`Routes/${this.route.id}/summary`).then(response => {
2019-03-22 10:10:23 +00:00
this.summary = response.data;
2019-03-25 12:16:34 +00:00
if (response.data && response.data.tickets)
2019-03-22 10:10:23 +00:00
this.sumPackages();
});
}
}
ngModule.vnComponent('vnRouteSummary', {
2019-03-22 10:10:23 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
route: '<'
}
});