Merge pull request '#6583 add destination opt filter' (!899) from 6583-addDestinationFilter into dev
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #899 Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
commit
df671b4472
|
@ -37,6 +37,7 @@ const userParams = reactive({
|
||||||
ipt: 'H',
|
ipt: 'H',
|
||||||
futureIpt: 'H',
|
futureIpt: 'H',
|
||||||
isFullMovable: true,
|
isFullMovable: true,
|
||||||
|
onlyWithDestination: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
const ticketColumns = computed(() => [
|
const ticketColumns = computed(() => [
|
||||||
|
@ -464,6 +465,7 @@ watch(
|
||||||
color="primary"
|
color="primary"
|
||||||
name="vn:agency-term"
|
name="vn:agency-term"
|
||||||
size="xs"
|
size="xs"
|
||||||
|
class="q-mr-xs"
|
||||||
>
|
>
|
||||||
<QTooltip class="column">
|
<QTooltip class="column">
|
||||||
<span>
|
<span>
|
||||||
|
@ -482,6 +484,14 @@ watch(
|
||||||
</span>
|
</span>
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
v-if="row.saleClonedFk"
|
||||||
|
color="primary"
|
||||||
|
name="content_copy"
|
||||||
|
size="xs"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('advanceTickets.clonedSales') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
</template>
|
</template>
|
||||||
<template #column-id="{ row }">
|
<template #column-id="{ row }">
|
||||||
<QBtn flat class="link">
|
<QBtn flat class="link">
|
||||||
|
|
|
@ -168,6 +168,16 @@ onMounted(async () => await getItemPackingTypes());
|
||||||
</VnSelect>
|
</VnSelect>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QCheckbox
|
||||||
|
toggle-indeterminate
|
||||||
|
label="only with destination"
|
||||||
|
v-model="params.onlyWithDestination"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
</template>
|
</template>
|
||||||
</VnFilterPanel>
|
</VnFilterPanel>
|
||||||
</template>
|
</template>
|
||||||
|
@ -182,6 +192,7 @@ en:
|
||||||
ipt: Destination IPT
|
ipt: Destination IPT
|
||||||
isFullMovable: 100% movable
|
isFullMovable: 100% movable
|
||||||
warehouseFk: Warehouse
|
warehouseFk: Warehouse
|
||||||
|
onlyWithDestination: Only with destination
|
||||||
es:
|
es:
|
||||||
Horizontal: Horizontal
|
Horizontal: Horizontal
|
||||||
Vertical: Vertical
|
Vertical: Vertical
|
||||||
|
@ -193,4 +204,5 @@ es:
|
||||||
ipt: IPT destino
|
ipt: IPT destino
|
||||||
isFullMovable: 100% movible
|
isFullMovable: 100% movible
|
||||||
warehouseFk: Almacén
|
warehouseFk: Almacén
|
||||||
|
onlyWithDestination: Solo con destino
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -53,6 +53,7 @@ advanceTickets:
|
||||||
errorsList: Errors list
|
errorsList: Errors list
|
||||||
search: Search advance tickets
|
search: Search advance tickets
|
||||||
searchInfo: Search advance tickets by ID or client ID
|
searchInfo: Search advance tickets by ID or client ID
|
||||||
|
clonedSales: Has turn lines
|
||||||
futureTickets:
|
futureTickets:
|
||||||
problems: Problems
|
problems: Problems
|
||||||
shipped: Date
|
shipped: Date
|
||||||
|
|
|
@ -91,6 +91,7 @@ advanceTickets:
|
||||||
errorsList: Lista de errores
|
errorsList: Lista de errores
|
||||||
search: Buscar por tickets adelantados
|
search: Buscar por tickets adelantados
|
||||||
searchInfo: Buscar tickets adelantados por el identificador o el identificador del cliente
|
searchInfo: Buscar tickets adelantados por el identificador o el identificador del cliente
|
||||||
|
clonedSales: Tiene líneas de turno
|
||||||
futureTickets:
|
futureTickets:
|
||||||
problems: Problemas
|
problems: Problemas
|
||||||
shipped: Fecha
|
shipped: Fecha
|
||||||
|
|
Loading…
Reference in New Issue