feat: refs #8638 add AWB field to travel and entry forms, update translations and styles #1620

Merged
pablone merged 7 commits from 8638-entryUpgradesForInvoiceInFixes into test 2025-03-24 12:52:12 +00:00
2 changed files with 8 additions and 1 deletions
Showing only changes of commit bfa375bacd - Show all commits

View File

@ -596,6 +596,7 @@ onMounted(() => {
icon="move_group"
color="primary"
:title="t('Transfer buys')"
data-cy="transferBuys"
flat
@click="dialogRef = true"
:disable="!selectedRows.length"
@ -610,7 +611,7 @@ onMounted(() => {
v-model="newEntryRef"
:label="t('Entry')"
type="number"
data-cy="transfer-buy-entry"
data-cy="entryDestinyInput"
/>
</QCardSection>
<QCardSection>
@ -623,6 +624,7 @@ onMounted(() => {
/>
<QBtn
label="Transfer"
data-cy="transferBuysBtn"
flat
color="primary"
@click="transferBuys(selectedRows, newEntryRef)"

View File

@ -80,6 +80,11 @@ describe('EntryBuys', () => {
checkColor('amount', COLORS.positive);
cy.saveCard();
cy.get('tbody > tr [tabindex="0"][role="checkbox"]').click();
cy.dataCy('transferBuys').should('be.enabled').click();
cy.dataCy('entryDestinyInput').should('be.visible').type('100');
cy.dataCy('transferBuysBtn').click();
cy.deleteEntry();
});