This commit is contained in:
parent
cd2b02b0c6
commit
4a2d61ddcb
|
@ -37,7 +37,6 @@ describe('Ticket descriptor path', () => {
|
|||
.wait(selectors.ticketDescriptor.changeShippedHourInput)
|
||||
.isVisible(selectors.ticketDescriptor.changeShippedHourInput);
|
||||
|
||||
|
||||
expect(visible).toBeTruthy();
|
||||
});
|
||||
|
||||
|
@ -127,16 +126,6 @@ describe('Ticket descriptor path', () => {
|
|||
expect(result).toEqual('Data saved!');
|
||||
});
|
||||
|
||||
it(`should navigate to the added ticket using the descriptors ship button`, async() => {
|
||||
const url = await nightmare
|
||||
.waitToClick(selectors.ticketDescriptor.closeStowawayDialog)
|
||||
.waitToClick(selectors.ticketDescriptor.shipButton)
|
||||
.waitForURL('#!/ticket/17/summary')
|
||||
.parsedUrl();
|
||||
|
||||
expect(url.hash).toContain('#!/ticket/17/summary');
|
||||
});
|
||||
|
||||
it(`should check the state of the stowaway ticket is embarked`, async() => {
|
||||
const state = await nightmare
|
||||
.waitToGetProperty(selectors.ticketDescriptor.stateLabelValue, 'innerText');
|
||||
|
@ -144,15 +133,6 @@ describe('Ticket descriptor path', () => {
|
|||
expect(state).toEqual('State Embarcando');
|
||||
});
|
||||
|
||||
it(`should navigate to the ship ticket using the descriptors ship button`, async() => {
|
||||
const url = await nightmare
|
||||
.waitToClick(selectors.ticketDescriptor.shipButton)
|
||||
.waitForURL('#!/ticket/16/summary')
|
||||
.parsedUrl();
|
||||
|
||||
expect(url.hash).toContain('#!/ticket/16/summary');
|
||||
});
|
||||
|
||||
it(`should navigate back to the added ticket using the descriptors ship button`, async() => {
|
||||
const url = await nightmare
|
||||
.waitToClick(selectors.ticketDescriptor.closeStowawayDialog)
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
class="modal-form"
|
||||
on-open="model.refresh()">
|
||||
<tpl-body>
|
||||
<vn-horizontal class="header vn-pa-md">
|
||||
<section class="header vn-pa-md">
|
||||
<h5><span translate>Stowaways to add</span></h5>
|
||||
</vn-horizontal>
|
||||
<vn-horizontal class="vn-pa-md"> <!-- FIXME: Dialog width -->
|
||||
</section>
|
||||
<vn-horizontal class="vn-pa-md">
|
||||
<vn-data-viewer model="model">
|
||||
<vn-table model="model" auto-load="false">
|
||||
<vn-thead>
|
||||
|
|
|
@ -15,7 +15,6 @@ class Controller {
|
|||
{name: 'Delete ticket', callback: this.showDeleteTicketDialog},
|
||||
{name: 'Change shipped hour', callback: this.showChangeShipped},
|
||||
{name: 'Send SMS', callback: this.showSMSDialog},
|
||||
{name: 'Show pallet report', callback: this.openRptRoute},
|
||||
{
|
||||
name: 'Add stowaway',
|
||||
callback: this.showAddStowaway,
|
||||
|
@ -147,11 +146,6 @@ class Controller {
|
|||
}
|
||||
}
|
||||
|
||||
openRptRoute() {
|
||||
let url = `/api/report/rpt-route?routeFk=${this.ticket.routeFk}`;
|
||||
window.open(url);
|
||||
}
|
||||
|
||||
showAddStowaway() {
|
||||
this.$scope.addStowaway.show();
|
||||
}
|
||||
|
|
|
@ -7,9 +7,10 @@ vn-add-stowaway {
|
|||
}
|
||||
|
||||
vn-dialog.modal-form {
|
||||
vn-horizontal.header {
|
||||
section.header {
|
||||
background-color: $color-main;
|
||||
color: $color-font-dark;
|
||||
text-align: center;
|
||||
|
||||
h5 {
|
||||
color: inherit;
|
||||
|
|
Loading…
Reference in New Issue