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 {
|
2020-04-28 12:26:02 +00:00
|
|
|
onDialogAccept(id) {
|
|
|
|
return this.$http.delete(`Expeditions/${id}`)
|
|
|
|
.then(() => this.$.model.refresh());
|
2018-03-21 14:51:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('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
|
|
|
});
|