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

298 lines
8.6 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
class Controller {
2019-04-12 11:54:31 +00:00
constructor($state, $scope, $http, vnApp, $translate, aclService) {
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;
2019-04-12 11:54:31 +00:00
this.aclService = aclService;
2018-11-08 14:20:42 +00:00
this.moreOptions = [
2019-04-26 06:52:43 +00:00
{name: 'Add turn', callback: this.showAddTurnDialog},
{name: 'Show Delivery Note', callback: this.showDeliveryNote},
2019-09-06 09:06:44 +00:00
{name: 'Send Delivery Note', callback: this.confirmDeliveryNote},
2019-04-26 06:52:43 +00:00
{name: 'Delete ticket', callback: this.showDeleteTicketDialog},
{name: 'Change shipped hour', callback: this.showChangeShipped},
{name: 'Send SMS', callback: this.showSMSDialog},
{
name: 'Add stowaway',
callback: this.showAddStowaway,
show: () => this.canShowStowaway
2019-04-26 06:52:43 +00:00
},
{
name: 'Remove stowaway',
callback: this.showRemoveStowaway,
show: () => this.shouldShowRemoveStowaway()
},
{
name: 'Make invoice',
acl: 'invoicing',
callback: this.showMakeInvoiceDialog,
show: () => !this.hasInvoice()
},
{
name: 'Regenerate invoice',
acl: 'invoicing',
callback: this.showRegenerateInvoiceDialog,
show: () => this.hasInvoice()
},
2018-11-08 14:20:42 +00:00
];
}
2019-01-21 07:45:02 +00:00
showChangeShipped() {
if (!this.isEditable) {
this.vnApp.showError(this.$translate.instant('This ticket can\'t be modified'));
return;
}
this.newShipped = this.ticket.shipped;
2019-01-21 07:45:02 +00:00
this.$scope.changeShippedDialog.show();
}
changeShipped(response) {
2019-10-30 15:57:14 +00:00
if (response === 'accept') {
let data = {shipped: this.newShipped};
let query = `Tickets/${this.ticket.id}/updateEditableTicket`;
this.$http.post(query, data).then(() => {
2019-01-21 07:45:02 +00:00
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();
const isTicket = path[1].state.name === 'ticket';
if (isTicket)
return true;
return false;
}
canStowaway() {
if (!this.isTicketModule()) return;
this.$http.get(`Tickets/${this.ticket.id}/canHaveStowaway`).then(response => {
if (response.data === true)
return this.canShowStowaway = true;
return this.canShowStowaway = 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() {
2019-04-15 12:34:33 +00:00
let options = this.moreOptions.filter(option => {
2019-04-15 12:37:12 +00:00
const hasShowProperty = Object.hasOwnProperty.call(option, 'show');
const hasAclProperty = Object.hasOwnProperty.call(option, 'acl');
const hasAcl = !hasAclProperty || (hasAclProperty && this.aclService.hasAny([option.acl]));
2019-04-12 11:54:31 +00:00
2019-04-15 12:37:12 +00:00
return (!hasShowProperty || option.show === true ||
typeof option.show === 'function' && option.show()) && hasAcl;
2019-01-18 12:36:13 +00:00
});
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;
}
showAddTurnDialog() {
this.$scope.addTurn.show();
}
addTurn(day) {
let params = {ticketFk: this.ticket.id, weekDay: day};
this.$http.patch(`TicketWeeklies`, params).then(() => {
2018-11-08 14:20:42 +00:00
this.$scope.addTurn.hide();
this.vnApp.showSuccess(this.$translate.instant('Data saved!'));
});
}
showDeleteTicketDialog() {
if (!this.isEditable) {
this.vnApp.showError(this.$translate.instant('This ticket cant be deleted'));
return;
}
this.$scope.deleteConfirmation.show();
}
deleteTicket(response) {
2019-10-30 15:57:14 +00:00
if (response === 'accept') {
const query = `Tickets/${this.ticket.id}/setDeleted`;
this.$http.post(query).then(() => {
2018-11-08 14:20:42 +00:00
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)
this.canStowaway();
2018-09-04 09:49:00 +00:00
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
}};
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}})`,
2019-10-22 11:44:36 +00:00
tooltip: 'Ship stowaways'
2019-01-18 12:36:13 +00:00
};
}
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 = `report/rpt-delivery-note?ticketFk=${this.ticket.id}`;
window.open(url);
}
showSMSDialog() {
const address = this.ticket.address;
this.newSMS = {
2019-04-16 05:59:12 +00:00
destinationFk: this.ticket.clientFk,
destination: address.mobile || null,
message: this.$translate.instant('SMSPayment')
};
this.$scope.sms.open();
}
2019-04-12 11:54:31 +00:00
/**
* Shows an invoice confirmation
*/
2019-04-26 06:52:43 +00:00
showMakeInvoiceDialog() {
this.$scope.makeInvoiceConfirmation.show();
2019-04-12 11:54:31 +00:00
}
/**
* Makes an invoice
* from current ticket
*
* @param {String} response - Response result
*/
2019-04-26 06:52:43 +00:00
makeInvoice(response) {
2019-10-30 15:57:14 +00:00
if (response === 'accept') {
const query = `Tickets/${this.ticket.id}/makeInvoice`;
2019-04-12 11:54:31 +00:00
this.$http.post(query).then(() => {
this.vnApp.showSuccess(this.$translate.instant('Ticket invoiced'));
this.$state.reload();
});
}
}
2019-04-26 06:52:43 +00:00
/**
* Shows an invoice confirmation
*/
showRegenerateInvoiceDialog() {
this.$scope.regenerateInvoiceConfirmation.show();
}
/**
* Sends an invoice to a regeneration queue
* for the current ticket
*
* @param {String} response - Response result
*/
regenerateInvoice(response) {
2019-10-30 15:57:14 +00:00
if (response === 'accept') {
2019-04-26 06:52:43 +00:00
const invoiceId = this.ticket.invoiceOut.id;
const query = `InvoiceOuts/${invoiceId}/regenerate`;
2019-04-26 06:52:43 +00:00
this.$http.post(query).then(() => {
const snackbarMessage = this.$translate.instant(
`Invoice sent for a regeneration, will be available in a few minutes`);
this.vnApp.showSuccess(snackbarMessage);
});
}
}
/**
* Returns if the current ticket
* is already invoiced
* @return {Boolean} - True if invoiced
*/
hasInvoice() {
return this.ticket.refFk !== null;
}
2019-09-06 09:06:44 +00:00
confirmDeliveryNote() {
this.$scope.confirmDeliveryNote.show();
}
sendDeliveryNote(response) {
2019-10-30 15:57:14 +00:00
if (response === 'accept') {
this.$http.post(`email/delivery-note`, {ticketFk: this.ticket.id}).then(
2019-09-06 09:06:44 +00:00
() => this.vnApp.showMessage(this.$translate.instant('Notification sent!'))
);
}
}
}
2019-04-12 11:54:31 +00:00
Controller.$inject = ['$state', '$scope', '$http', 'vnApp', '$translate', 'aclService'];
ngModule.component('vnTicketDescriptor', {
template: require('./index.html'),
bindings: {
ticket: '<',
cardReload: '&'
},
controller: Controller
});