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 {
|
2018-03-21 14:51:09 +00:00
|
|
|
deleteExpedition(expedition) {
|
2018-09-04 09:57:41 +00:00
|
|
|
this.expeditionId = expedition.id;
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.deleteExpedition.show();
|
2018-09-04 09:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
returnDialog(response) {
|
2019-10-30 15:57:14 +00:00
|
|
|
if (response === 'accept') {
|
2019-10-24 22:53:53 +00:00
|
|
|
this.$http.delete(`Expeditions/${this.expeditionId}`).then(
|
2019-02-15 11:39:21 +00:00
|
|
|
() => this.$.model.refresh()
|
2018-09-04 09:57:41 +00:00
|
|
|
);
|
|
|
|
}
|
2018-03-21 14:51:09 +00:00
|
|
|
}
|
2018-05-29 12:33:29 +00:00
|
|
|
|
2020-05-06 16:42:50 +00:00
|
|
|
showItemDescriptor(event, sale) {
|
|
|
|
this.$.itemDescriptor.itemFk = sale.itemFk;
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.itemDescriptor.parent = event.target;
|
|
|
|
this.$.itemDescriptor.show();
|
|
|
|
}
|
|
|
|
|
2019-04-25 12:24:02 +00:00
|
|
|
showWorkerDescriptor(event, workerFk) {
|
2019-02-15 11:39:21 +00:00
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
2019-04-25 12:24:02 +00:00
|
|
|
this.selectedWorker = workerFk;
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.workerDescriptor.parent = event.target;
|
|
|
|
this.$.workerDescriptor.show();
|
2018-05-29 12:33:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onDescriptorLoad() {
|
2019-02-15 11:39:21 +00:00
|
|
|
this.$.popover.relocate();
|
2018-05-29 12:33:29 +00:00
|
|
|
}
|
2018-03-21 14:51:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('vnTicketExpedition', {
|
2018-05-25 08:03:45 +00:00
|
|
|
template: require('./index.html'),
|
2018-09-04 09:49:00 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
2018-10-29 08:39:37 +00:00
|
|
|
ticket: '<',
|
|
|
|
},
|
2018-03-21 14:51:09 +00:00
|
|
|
});
|