salix/modules/ticket/front/descriptor/addStowaway.js

48 lines
1.2 KiB
JavaScript
Raw Normal View History

2019-01-18 12:36:13 +00:00
import ngModule from '../module';
class Controller {
constructor($state, $, $http, vnApp, $translate) {
this.vnApp = vnApp;
this.$translate = $translate;
this.$ = $;
2019-01-18 12:36:13 +00:00
this.$state = $state;
this.$http = $http;
}
getPossibleStowaways() {
this.$http.get(`/api/Tickets/${this.ticket.id}/getPossibleStowaways`)
.then(res => {
this.possibleStowaways = res.data;
});
}
addStowaway(index) {
let params = {id: this.possibleStowaways[index].id, shipFk: this.ticket.id};
this.$http.post(`/api/Stowaways/`, params)
.then(() => {
this.cardReload();
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
2019-06-21 11:19:51 +00:00
this.$.dialog.hide();
2019-01-18 12:36:13 +00:00
});
}
show() {
this.$.dialog.show();
2019-01-18 12:36:13 +00:00
}
hide() {
this.$.dialog.hide();
2019-01-18 12:36:13 +00:00
}
}
Controller.$inject = ['$state', '$scope', '$http', 'vnApp', '$translate'];
ngModule.component('vnAddStowaway', {
template: require('./addStowaway.html'),
controller: Controller,
bindings: {
ticket: '<',
cardReload: '&?'
2019-01-18 12:36:13 +00:00
}
});