feat: refs #7197 add correcting filter
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jorge Penadés 2024-06-26 11:47:14 +02:00
parent 98bc7cbf0d
commit 2cb6d21ade
3 changed files with 17 additions and 4 deletions

View File

@ -478,6 +478,9 @@ const createInvoiceInCorrection = async () => {
.q-card { .q-card {
max-width: 45em; max-width: 45em;
} }
.q-field:nth-child(1) {
padding-bottom: 20px;
}
} }
@media (max-width: $breakpoint-xs) { @media (max-width: $breakpoint-xs) {

View File

@ -103,6 +103,14 @@ const suppliers = ref([]);
toggle-indeterminate toggle-indeterminate
/> />
</QItemSection> </QItemSection>
<QItemSection>
<QCheckbox
:label="t('params.correctingFk')"
v-model="params.correctingFk"
@update:model-value="searchFn()"
toggle-indeterminate
/>
</QItemSection>
</QItem> </QItem>
<QExpansionItem :label="t('More options')" expand-separator> <QExpansionItem :label="t('More options')" expand-separator>
<QItem> <QItem>
@ -156,10 +164,11 @@ en:
serial: Serial serial: Serial
account: Ledger account account: Ledger account
isBooked: is booked isBooked: is booked
correctedFk: Rectificatives correctedFk: Rectified
issued: Issued issued: Issued
to: To to: To
awbCode: AWB awbCode: AWB
correctingFk: Rectificative
es: es:
params: params:
search: Id o nombre proveedor search: Id o nombre proveedor
@ -176,7 +185,8 @@ es:
account: Cuenta contable account: Cuenta contable
created: Creada created: Creada
dued: Vencida dued: Vencida
correctedFk: Rectificativas correctedFk: Rectificada
correctingFk: Rectificativa
From: Desde From: Desde
To: Hasta To: Hasta
Amount: Importe Amount: Importe

View File

@ -39,8 +39,8 @@ onUnmounted(() => (stateStore.rightDrawer = false));
> >
<template #body="{ rows }"> <template #body="{ rows }">
<CardList <CardList
v-for="row of rows" v-for="(row, index) of rows"
:key="row.id" :key="index"
:title="row.supplierRef" :title="row.supplierRef"
@click="$router.push({ path: `/invoice-in/${row.id}` })" @click="$router.push({ path: `/invoice-in/${row.id}` })"
:id="row.id" :id="row.id"