forked from verdnatura/salix-front
hotFix: try to fix myEntries
This commit is contained in:
parent
c926b047e2
commit
e3204e0ce3
|
@ -6,20 +6,19 @@ import { toDate } from 'src/filters/index';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
import EntryBuysTableDialog from './EntryBuysTableDialog.vue';
|
import EntryBuysTableDialog from './EntryBuysTableDialog.vue';
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
// {
|
{
|
||||||
// align: 'left',
|
align: 'left',
|
||||||
// name: 'id',
|
name: 'id',
|
||||||
// label: t('customer.extendedList.tableVisibleColumns.id'),
|
label: t('customer.extendedList.tableVisibleColumns.id'),
|
||||||
// chip: {
|
chip: {
|
||||||
// condition: () => true,
|
condition: () => true,
|
||||||
// },
|
},
|
||||||
// isId: true,
|
isId: true,
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('shipped'),
|
label: t('shipped'),
|
||||||
|
@ -34,7 +33,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('landed'),
|
label: t('landed'),
|
||||||
name: 'landed',
|
name: 'from',
|
||||||
cardVisible: false,
|
cardVisible: false,
|
||||||
component: 'date',
|
component: 'date',
|
||||||
columnField: {
|
columnField: {
|
||||||
|
|
Loading…
Reference in New Issue