refs #6898 filters #572

Merged
carlossa merged 3 commits from hotfix-supplierMigration3 into master 2024-07-26 10:14:33 +00:00
2 changed files with 1 additions and 8 deletions
Showing only changes of commit d575c3cdae - Show all commits

View File

@ -17,7 +17,7 @@ const workersOptions = ref([]);
<template>
<FetchData
carlossa marked this conversation as resolved Outdated
Outdated
Review

No descargarse toda la tabla entera
Si se usa en un VnSelect pasale la prop URL y todo lo demas

No descargarse toda la tabla entera Si se usa en un VnSelect pasale la prop URL y todo lo demas
url="Workers/search"
:filter="{ fields: ['id', 'nickname'], order: 'nickname ASC', limit: 30 }"
:filter="{ fields: ['id', 'nickname'], order: 'nickname ASC' }"
@on-fetch="(data) => (workersOptions = data)"
auto-load
/>

View File

@ -80,11 +80,6 @@ const columns = computed(() => [
<template>
<VnSearchbar data-key="SuppliersList" :limit="20" :label="t('Search suppliers')" />
<RightMenu>
<template #right-panel>
<SupplierListFilter data-key="SuppliersList" />
carlossa marked this conversation as resolved Outdated
Outdated
Review

Borrar component entonces?

Borrar component entonces?

no

no
</template>
</RightMenu>
<VnTable
ref="tableRef"
data-key="SuppliersList"
@ -100,8 +95,6 @@ const columns = computed(() => [
order="id ASC"
:columns="columns"
auto-load
:right-search="false"
:use-model="true"
/>
</template>