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

69 lines
1.9 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)
checkedRows.push(row);
}
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-06 08:18:19 +00:00
async onRemove() {
const params = [];
for (let expedition of this.checked)
params.push(expedition.id);
for (let id of params) {
await this.$http.delete(`Expeditions/${id}`)
.then(() => {
this.vnApp.showSuccess(this.$t('Expedition removed'));
this.$state.reload();
});
}
}
2022-10-03 13:18:07 +00:00
createTicket(routeFk) {
const tomorrow = new Date();
const params = {
clientId: this.ticket.clientFk,
landed: tomorrow.getDay() + 1,
addressId: this.ticket.addressFk,
agencyModeId: this.ticket.agencyModeFk,
warehouseId: this.ticket.warehouseFk
};
const query = `Tickets/new`;
this.$http.post(query, params).then(res => {
if (routeFk) this.$http.patch(`Tickets/${res.data.id}`, {routeFk: routeFk});
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
});