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

178 lines
5.0 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
class Controller {
2018-11-08 14:20:42 +00:00
constructor($state, $scope, $http, vnApp, $translate) {
this.$scope = $scope;
2018-09-04 09:49:00 +00:00
this.$state = $state;
2018-11-08 14:20:42 +00:00
this.$http = $http;
this.vnApp = vnApp;
this.$translate = $translate;
this.moreOptions = [
2019-01-18 12:36:13 +00:00
{callback: this.showAddTurnDialog, name: 'Add turn', show: true},
{callback: this.showAddStowaway, name: 'Add stowaway', show: () => this.isTicketModule()},
2019-01-21 07:45:02 +00:00
{callback: this.showRemoveStowaway, name: 'Remove stowaway', show: () => this.shouldShowRemoveStowaway()},
{callback: this.showDeliveryNote, name: 'Show Delivery Note', show: true},
{callback: this.showDeleteTicketDialog, name: 'Delete ticket', show: true},
{callback: this.showChangeShipped, name: 'Change shipped hour', show: true}
2018-11-08 14:20:42 +00:00
];
}
2019-01-21 07:45:02 +00:00
// Change shipped hour
showChangeShipped() {
if (!this.isEditable) {
this.vnApp.showError(this.$translate.instant('This ticket can\'t be modified'));
return;
}
this.newShipped = new Date(this.ticket.shipped);
this.$scope.changeShippedDialog.show();
}
changeShipped(response) {
if (response === 'ACCEPT') {
let params = {shipped: this.newShipped};
this.$http.patch(`/ticket/api/Tickets/${this.ticket.id}/`, params).then(() => {
this.vnApp.showSuccess(this.$translate.instant('Shipped hour updated'));
this.cardReload();
2019-01-21 07:45:02 +00:00
});
}
}
isTicketModule() {
let path = this.$state.getCurrentPath();
if (path[1].state.name === 'ticket')
return true;
return false;
}
2019-01-18 12:36:13 +00:00
shouldShowRemoveStowaway() {
if (!this._ticket || !this.isTicketModule())
2019-01-18 12:36:13 +00:00
return false;
return (this._ticket.stowaway || (this._ticket.ship && this._ticket.ship.length > 0));
2019-01-18 12:36:13 +00:00
}
2018-11-08 14:20:42 +00:00
onMoreChange(callback) {
callback.call(this);
}
2019-01-18 12:36:13 +00:00
goToTicket(ticketID) {
this.$state.go('ticket.card.sale', {id: ticketID}, {absolute: true});
2019-01-18 12:36:13 +00:00
}
onMoreOpen() {
let options = this.moreOptions.filter(o => {
return o.show === true || typeof o.show === 'function' && o.show();
});
this.$scope.moreButton.data = options;
}
2018-11-08 14:20:42 +00:00
get isEditable() {
try {
return !this.ticket.tracking.state.alertLevel;
} catch (e) {}
return true;
}
// Add Turn
showAddTurnDialog() {
this.$scope.addTurn.show();
}
addTurn(day) {
let params = {ticketFk: this.ticket.id, weekDay: day};
this.$http.patch(`/ticket/api/TicketWeeklies`, params).then(() => {
this.$scope.addTurn.hide();
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
});
}
// Delete Ticket
showDeleteTicketDialog() {
if (!this.isEditable) {
this.vnApp.showError(this.$translate.instant('This ticket cant be deleted'));
return;
}
this.$scope.deleteConfirmation.show();
}
deleteTicket(response) {
if (response === 'ACCEPT') {
let params = {id: this.ticket.id};
this.$http.post(`/ticket/api/Tickets/deleted`, params).then(() => {
this.$state.go('ticket.index');
this.vnApp.showSuccess(this.$translate.instant('Ticket deleted'));
});
}
}
2019-01-18 12:36:13 +00:00
showAddStowaway() {
this.$scope.addStowaway.show();
}
showRemoveStowaway() {
this.$scope.removeStowaway.show();
}
2018-09-04 09:49:00 +00:00
get ticket() {
return this._ticket;
}
2018-09-04 09:49:00 +00:00
set ticket(value) {
this._ticket = value;
if (!value) return;
2019-01-18 12:36:13 +00:00
let links = {
2018-09-04 09:49:00 +00:00
btnOne: {
icon: 'person',
state: `client.card.summary({id: ${value.clientFk}})`,
tooltip: 'Client card'
2019-01-18 12:36:13 +00:00
}};
if (value.stowaway) {
links.btnTwo = {
2019-02-01 10:42:31 +00:00
icon: 'icon-stowaway',
2019-01-18 12:36:13 +00:00
state: `ticket.card.summary({id: ${value.stowaway.shipFk}})`,
tooltip: 'Ship'
};
}
2019-01-21 07:45:02 +00:00
if (value.ship && value.ship.length == 1) {
2019-01-18 12:36:13 +00:00
links.btnThree = {
2019-02-01 10:42:31 +00:00
icon: 'icon-stowaway',
2019-01-18 12:36:13 +00:00
state: `ticket.card.summary({id: ${value.ship[0].id}})`,
tooltip: 'Stowaway'
};
2019-01-21 07:45:02 +00:00
} else if (value.ship && value.ship.length > 1)
2019-01-18 12:36:13 +00:00
this.shipStowaways = value.ship;
2019-01-21 07:45:02 +00:00
2019-01-18 12:36:13 +00:00
this._quicklinks = links;
2018-09-04 09:49:00 +00:00
}
set quicklinks(value = {}) {
this._quicklinks = Object.assign(value, this._quicklinks);
}
get quicklinks() {
return this._quicklinks;
}
showDeliveryNote() {
let url = `/api/report/rpt-delivery-note?ticketFk=${this.ticket.id}`;
window.open(url);
}
}
2018-11-08 14:20:42 +00:00
Controller.$inject = ['$state', '$scope', '$http', 'vnApp', '$translate'];
ngModule.component('vnTicketDescriptor', {
template: require('./index.html'),
bindings: {
ticket: '<',
cardReload: '&'
},
controller: Controller
});