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;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-01-12 06:39:12 +00:00
|
|
|
get isDelivery() {
|
|
|
|
return this.aclService.hasAny(['delivery']);
|
|
|
|
}
|
|
|
|
|
2019-03-22 10:10:23 +00:00
|
|
|
get route() {
|
|
|
|
return this._route;
|
|
|
|
}
|
|
|
|
|
|
|
|
getSummary() {
|
2019-10-24 22:53:53 +00:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnRouteSummary', {
|
2019-03-22 10:10:23 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
route: '<'
|
|
|
|
}
|
|
|
|
});
|