refs #5835 migrateInvoiceIn #110

Merged
jorgep merged 29 commits from 5835-migrateInvoiceIn into dev 2023-12-13 10:25:07 +00:00
2 changed files with 13 additions and 18 deletions
Showing only changes of commit b6e8658de9 - Show all commits

View File

@ -65,16 +65,10 @@ const columns = computed(() => [
]);
const isNotEuro = (code) => code != 'EUR';
const areRows = ref(null);
async function insert() {
if (!areRows.value) {
await axios.post('/InvoiceInDueDays/new ', { id: Number(invoiceId) });
await invoiceInFormRef.value.reload();
}
if (areRows.value) {
invoiceInFormRef.value.insert();
}
await axios.post('/InvoiceInDueDays/new ', { id: Number(invoiceId) });
jorgep marked this conversation as resolved Outdated

TIP: es igual poner Number(invoiceId) que +invoiceId

TIP: es igual poner Number(invoiceId) que +invoiceId
await invoiceInFormRef.value.reload();
}
</script>
<template>

View File

@ -2,28 +2,29 @@
describe('InvoiceInDueDay', () => {
const inputs = 'label input';
const inputBtns = 'label button';
const dialogBtns = '.q-dialog button';
const addBtn = '.q-page-sticky > div > .q-btn > .q-btn__content';
beforeEach(() => {
cy.login('developer');
cy.visit(`/#/invoice-in/1/due-day`);
cy.visit(`/#/invoice-in/6/due-day`);
});
it('should update the amount', () => {
cy.get(inputBtns).eq(0).click();
cy.get(inputBtns).eq(1).click();
cy.get(inputs).eq(3).type(23);
cy.saveCard();
cy.get('.q-notification__message').should('have.text', 'Data saved');
});
it('should add a new row ', () => {
cy.addRow();
cy.get(inputs).eq(11).type(8);
cy.saveCard();
cy.get('.q-notification__message').should('have.text', 'Data saved');
});
it('should remove the first line', () => {
cy.removeRow(1);
});
it('should add a new row ', () => {
cy.waitForElement('thead');
cy.get(addBtn).click();
cy.saveCard();
cy.get('.q-notification__message').should('have.text', 'Data saved');
});
});