salix/modules/ticket/front/expedition/index.js

72 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-03-21 14:51:09 +00:00
import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
2018-03-21 14:51:09 +00:00
2020-03-18 07:35:59 +00:00
class Controller extends Section {
onDialogAccept(id) {
return this.$http.delete(`Expeditions/${id}`)
.then(() => this.$.model.refresh());
2018-03-21 14:51:09 +00:00
}
2022-05-04 08:35:31 +00:00
showLog(expedition) {
this.expedition = expedition;
this.$.statusLog.show();
}
2022-09-22 12:58:38 +00:00
get checked() {
const rows = this.$.model.data || [];
const checkedRows = [];
for (let row of rows) {
if (row.checked)
2022-10-07 08:47:54 +00:00
checkedRows.push(row.id);
2022-09-22 12:58:38 +00:00
}
return checkedRows;
}
2022-09-23 06:50:11 +00:00
get totalChecked() {
return this.checked.length;
}
2022-10-03 13:18:07 +00:00
2022-10-07 08:47:54 +00:00
onRemove() {
const params = {expeditionsIds: this.checked};
const query = `Expeditions/deleteExpeditions`;
this.$http.post(query, params)
.then(() => {
this.vnApp.showSuccess(this.$t('Expedition removed'));
this.$state.reload();
});
2022-10-06 08:18:19 +00:00
}
2022-10-03 13:18:07 +00:00
createTicket(routeFk) {
const date = new Date(); // esta fecha hay que preguntarla a Fran Monsalvez
const ticketParams = {
2022-10-03 13:18:07 +00:00
clientId: this.ticket.clientFk,
landed: date,
2022-10-03 13:18:07 +00:00
addressId: this.ticket.addressFk,
agencyModeId: this.ticket.agencyModeFk,
warehouseId: this.ticket.warehouseFk
};
const query = `Tickets/new`;
this.$http.post(query, ticketParams).then(res => {
2022-10-03 13:18:07 +00:00
if (routeFk) this.$http.patch(`Tickets/${res.data.id}`, {routeFk: routeFk});
2022-10-07 08:47:54 +00:00
const params = {
expeditionsIds: this.checked,
ticketId: res.data.id
};
const query = `Expeditions/moveExpeditions`;
this.$http.post(query, params);
2022-10-03 13:18:07 +00:00
this.vnApp.showSuccess(this.$t('Data saved!'));
this.$state.go('ticket.card.summary', {id: res.data.id});
});
}
2018-03-21 14:51:09 +00:00
}
ngModule.vnComponent('vnTicketExpedition', {
template: require('./index.html'),
2018-09-04 09:49:00 +00:00
controller: Controller,
bindings: {
ticket: '<',
},
2018-03-21 14:51:09 +00:00
});