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

36 lines
994 B
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
}
2018-05-29 12:33:29 +00:00
showItemDescriptor(event, itemFk) {
2018-09-04 09:57:41 +00:00
if (!itemFk) return;
2018-09-04 09:49:00 +00:00
this.quicklinks = {
btnThree: {
icon: 'icon-transaction',
state: `item.card.diary({
id: ${itemFk},
warehouseFk: ${this.ticket.warehouseFk},
ticketFk: ${this.ticket.id}
2018-09-04 09:49:00 +00:00
})`,
tooltip: 'Item diary',
},
2018-09-04 09:49:00 +00:00
};
this.$.itemDescriptor.itemFk = itemFk;
this.$.itemDescriptor.parent = event.target;
this.$.itemDescriptor.show();
}
2018-03-21 14:51:09 +00:00
}
ngModule.component('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
});