forked from verdnatura/salix-front
hotFix: try to fix myEntries
This commit is contained in:
parent
369736f362
commit
29299970f4
|
@ -10,52 +10,51 @@ import VnInput from 'src/components/common/VnInput.vue';
|
|||
|
||||
const { t } = useI18n();
|
||||
const quasar = useQuasar();
|
||||
|
||||
const columns = computed(() => [
|
||||
{
|
||||
align: 'left',
|
||||
name: 'id',
|
||||
label: t('customer.extendedList.tableVisibleColumns.id'),
|
||||
chip: {
|
||||
condition: () => true,
|
||||
},
|
||||
isId: true,
|
||||
isTitle: false,
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
label: t('shipped'),
|
||||
name: 'shipped',
|
||||
isTitle: false,
|
||||
create: true,
|
||||
cardVisible: true,
|
||||
component: 'date',
|
||||
columnField: {
|
||||
component: null,
|
||||
},
|
||||
format: ({ shipped }) => toDate(shipped),
|
||||
},
|
||||
// {
|
||||
// align: 'left',
|
||||
// label: t('landed'),
|
||||
// name: 'landed',
|
||||
// name: 'id',
|
||||
// label: t('customer.extendedList.tableVisibleColumns.id'),
|
||||
// chip: {
|
||||
// condition: () => true,
|
||||
// },
|
||||
// isId: true,
|
||||
// isTitle: false,
|
||||
// },
|
||||
// {
|
||||
// align: 'left',
|
||||
// label: t('shipped'),
|
||||
// name: 'shipped',
|
||||
// isTitle: false,
|
||||
// create: true,
|
||||
// cardVisible: false,
|
||||
// cardVisible: true,
|
||||
// component: 'date',
|
||||
// columnField: {
|
||||
// component: null,
|
||||
// },
|
||||
// format: ({ landed }) => toDate(landed),
|
||||
// },
|
||||
// {
|
||||
// align: 'left',
|
||||
// label: t('globals.wareHouseIn'),
|
||||
// name: 'warehouseInName',
|
||||
// isTitle: false,
|
||||
// cardVisible: true,
|
||||
// create: false,
|
||||
// format: ({ shipped }) => toDate(shipped),
|
||||
// },
|
||||
{
|
||||
align: 'left',
|
||||
label: t('landed'),
|
||||
name: 'landed',
|
||||
isTitle: false,
|
||||
create: true,
|
||||
cardVisible: false,
|
||||
component: 'date',
|
||||
columnField: {
|
||||
component: null,
|
||||
},
|
||||
format: ({ landed }) => toDate(landed),
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
label: t('globals.wareHouseIn'),
|
||||
name: 'warehouseInName',
|
||||
isTitle: false,
|
||||
cardVisible: true,
|
||||
create: false,
|
||||
},
|
||||
// {
|
||||
// align: 'right',
|
||||
// name: 'tableActions',
|
||||
|
@ -79,14 +78,13 @@ const columns = computed(() => [
|
|||
// };
|
||||
</script>
|
||||
<template>
|
||||
<VnSearchbar
|
||||
<!-- <VnSearchbar
|
||||
data-key="myEntriesList"
|
||||
url="Entries/filter"
|
||||
:label="t('Search entries')"
|
||||
:info="t('You can search by entry reference')"
|
||||
/>
|
||||
/> -->
|
||||
<VnTable
|
||||
ref="myEntriesRef"
|
||||
data-key="myEntriesList"
|
||||
url="Entries/filter"
|
||||
:columns="columns"
|
||||
|
|
Loading…
Reference in New Issue