#1326 enlazar en ticket.descriptor tres puntos
This commit is contained in:
parent
0343aea2a5
commit
98e704adf8
|
@ -14,7 +14,8 @@ class Controller {
|
||||||
{callback: this.showDeliveryNote, name: 'Show Delivery Note', show: true},
|
{callback: this.showDeliveryNote, name: 'Show Delivery Note', show: true},
|
||||||
{callback: this.showDeleteTicketDialog, name: 'Delete ticket', show: true},
|
{callback: this.showDeleteTicketDialog, name: 'Delete ticket', show: true},
|
||||||
{callback: this.showChangeShipped, name: 'Change shipped hour', show: true},
|
{callback: this.showChangeShipped, name: 'Change shipped hour', show: true},
|
||||||
{callback: this.showSMSDialog, name: 'Send SMS', show: true}
|
{callback: this.showSMSDialog, name: 'Send SMS', show: true},
|
||||||
|
{callback: this.openRptRoute, name: 'Show pallet report', show: true}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,6 +110,11 @@ class Controller {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
openRptRoute() {
|
||||||
|
let url = `/api/report/rpt-route?routeFk=${this.ticket.routeFk}`;
|
||||||
|
window.open(url);
|
||||||
|
}
|
||||||
|
|
||||||
showAddStowaway() {
|
showAddStowaway() {
|
||||||
this.$scope.addStowaway.show();
|
this.$scope.addStowaway.show();
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ Add stowaway: Añadir polizón
|
||||||
Remove stowaway: Borrar polizón
|
Remove stowaway: Borrar polizón
|
||||||
Are you sure you want to delete this stowaway?: ¿Estas seguro de que quieres borrar este polizón?
|
Are you sure you want to delete this stowaway?: ¿Estas seguro de que quieres borrar este polizón?
|
||||||
Show Delivery Note: Ver albarán
|
Show Delivery Note: Ver albarán
|
||||||
|
Show pallet report: Mostrar hoja de pallet
|
||||||
Change shipped hour: Cambiar hora de envío
|
Change shipped hour: Cambiar hora de envío
|
||||||
Shipped hour: Hora de envío
|
Shipped hour: Hora de envío
|
||||||
SMSPayment: >-
|
SMSPayment: >-
|
||||||
|
|
Loading…
Reference in New Issue