diff --git a/src/pages/Entry/EntryList.vue b/src/pages/Entry/EntryList.vue index 353b215af..e5d37900c 100644 --- a/src/pages/Entry/EntryList.vue +++ b/src/pages/Entry/EntryList.vue @@ -123,7 +123,6 @@ onMounted(async () => { es: - Print buys: Imprimir compras Inventory entry: Es inventario Virtual entry: Es una redada Search entries: Buscar entradas diff --git a/src/pages/Entry/MyEntries.vue b/src/pages/Entry/MyEntries.vue index 8ab61bc13..2d8f5c954 100644 --- a/src/pages/Entry/MyEntries.vue +++ b/src/pages/Entry/MyEntries.vue @@ -34,28 +34,33 @@ const columns = computed(() => [ condition: () => true, }, isId: true, - columnFilter: { - component: 'select', - name: 'search', - attrs: { - url: 'Clients', - fields: ['id', 'name'], - }, - }, + isTitle: false, }, { align: 'left', - label: t('customer.extendedList.tableVisibleColumns.name'), - name: 'name', - isTitle: true, + label: t('globals.shipped'), + name: 'shipped', + isTitle: false, create: true, + cardVisible: true, + format: ({ shipped }) => toDate(shipped), }, { align: 'left', - name: 'socialName', - label: t('customer.extendedList.tableVisibleColumns.socialName'), - isTitle: true, + label: t('globals.landed'), + name: 'landed', + isTitle: false, create: true, + cardVisible: true, + format: ({ landed }) => toDate(landed), + }, + { + align: 'left', + label: t('globals.wareHouseIn'), + name: 'wareouseIn', + isTitle: false, + cardVisible: true, + create: false, }, { align: 'right', @@ -102,25 +107,21 @@ import VnTable from 'components/VnTable/VnTable.vue'; url="Entries/filter" :order="['landed DESC', 'id DESC']" :columns="columns" - default-mode="table" + default-mode="card" redirect="customer" auto-load - :create="null" + :options="[]" + :right-search="false" > + - - - - {{ t('entry.list.newEntry') }} - - es: - Print buys: Imprimir compras + Print buys: Imprimir etiquetas Inventory entry: Es inventario Virtual entry: Es una redada Search entries: Buscar entradas