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

18 lines
415 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
}
}
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
});