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

137 lines
3.9 KiB
JavaScript
Raw Normal View History

2019-04-04 11:06:41 +00:00
import ngModule from '../module';
import Section from 'salix/components/section';
2019-04-04 11:06:41 +00:00
import './style.scss';
import UserError from 'core/lib/user-error';
2019-04-04 11:06:41 +00:00
class Controller extends Section {
2022-06-09 11:48:57 +00:00
constructor($element, $, vnReport) {
super($element, $);
this.droppableElement = 'a.vn-tr';
}
2019-04-04 11:06:41 +00:00
get isChecked() {
if (this.tickets) {
for (let instance of this.tickets)
if (instance.checked) return true;
}
return false;
}
2019-04-04 11:06:41 +00:00
getHighestPriority() {
let highestPriority = Math.max(...this.$.model.data.map(tag => {
return tag.priority;
}));
return highestPriority + 1;
2019-04-04 11:06:41 +00:00
}
setPriority(id, priority) {
let params = {priority: priority};
let query = `Tickets/${id}/`;
2019-04-04 11:06:41 +00:00
this.$http.patch(query, params).then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
2019-04-04 11:06:41 +00:00
this.$.model.refresh();
});
}
getSelectedItems(items) {
const selectedItems = [];
if (items) {
for (let i = 0; i < items.length; i++) {
if (items[i].checked)
selectedItems.push(items[i]);
2019-04-04 11:06:41 +00:00
}
}
return selectedItems;
2019-04-04 11:06:41 +00:00
}
goToBuscaman() {
if (!this.route.vehicleFk)
throw new UserError(`The route doesn't have a vehicle`);
let query = `Routes/${this.route.vehicleFk}/getDeliveryPoint`;
this.$http.get(query).then(response => {
if (!response.data)
throw new UserError(`The route's vehicle doesn't have a delivery point`);
return response.data;
}).then(address => {
let addresses;
if (address) addresses = address;
let lines = this.getSelectedItems(this.tickets);
let url = 'http://gps.buscalia.com/usuario/localizar.aspx?bmi=true&addr=';
lines.forEach(line => {
2022-06-14 06:03:46 +00:00
// if lineOld.street <> line.street
addresses = addresses + '+to:' + line.postalCode + ' ' + line.city + ' ' + line.street;
// lineOld = line
});
window.open(url + addresses, '_blank');
2019-04-04 11:06:41 +00:00
});
}
showDeleteConfirm(id) {
this.selectedTicket = id;
2019-04-04 11:06:41 +00:00
this.$.confirm.show();
}
removeTicketFromRoute($index) {
2020-07-29 08:47:48 +00:00
let params = {routeFk: null};
let query = `Tickets/${this.selectedTicket}/`;
this.$http.patch(query, params).then(() => {
this.$.model.remove($index);
2020-07-29 08:47:48 +00:00
this.vnApp.showSuccess(this.$t('Ticket removed from route'));
this.updateVolume();
});
2019-04-04 11:06:41 +00:00
}
2019-06-06 11:50:12 +00:00
updateVolume() {
let url = `Routes/${this.$params.id}/updateVolume`;
2019-06-06 11:50:12 +00:00
this.$http.post(url).then(() => {
this.card.reload();
this.$.model.refresh();
});
}
2019-04-04 11:06:41 +00:00
guessPriority() {
let query = `Routes/${this.$params.id}/guessPriority/`;
2019-04-04 11:06:41 +00:00
this.$http.get(query).then(() => {
this.vnApp.showSuccess(this.$t('Order changed'));
2019-04-04 11:06:41 +00:00
this.$.model.refresh();
});
}
2022-06-09 11:48:57 +00:00
onDrop($event) {
2022-06-08 13:17:45 +00:00
const target = $event.target;
const droppable = target.closest(this.droppableElement);
2022-06-09 11:48:57 +00:00
const ticketId = droppable.id;
console.log($event, target, droppable, ticketId);
}
insert(ticketId) {
ticketId = parseInt(ticketId);
2020-11-20 11:12:06 +00:00
const query = `Routes/${this.route.id}/insertTicket`;
return this.$http.patch(query, {ticketId}).then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
this.updateVolume();
}).catch(error => {
if (error.status == 404)
return this.vnApp.showError(this.$t('Ticket not found'));
throw error;
});
}
2019-04-04 11:06:41 +00:00
}
ngModule.vnComponent('vnRouteTickets', {
2019-04-04 11:06:41 +00:00
template: require('./index.html'),
controller: Controller,
2019-06-06 11:50:12 +00:00
require: {
card: '^vnRouteCard'
},
bindings: {
route: '<'
}
2019-04-04 11:06:41 +00:00
});