refs #7283 fix itemMigration list filters
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-10-02 12:51:33 +02:00
parent 54015fb6bf
commit 55ddc8644f
2 changed files with 9 additions and 2 deletions

View File

@ -208,6 +208,9 @@ const columns = computed(() => [
columnField: { columnField: {
component: null, component: null,
}, },
columnFilter: {
inWhere: true,
},
}, },
{ {
label: t('item.list.stemMultiplier'), label: t('item.list.stemMultiplier'),
@ -217,11 +220,14 @@ const columns = computed(() => [
columnField: { columnField: {
component: null, component: null,
}, },
columnFilter: {
inWhere: true,
},
}, },
{ {
label: t('item.list.isActive'), label: t('item.list.isActive'),
name: 'isActive', name: 'isActive',
align: 'left', align: 'center',
component: 'checkbox', component: 'checkbox',
}, },
{ {

View File

@ -29,6 +29,7 @@ const store = arrayData.store;
const userParams = { const userParams = {
state: 'pending', state: 'pending',
daysOnward: 7,
}; };
const tableRef = ref(); const tableRef = ref();
@ -120,7 +121,7 @@ const columns = computed(() => [
{ {
align: 'left', align: 'left',
name: 'daysOnward', name: 'daysOnward',
label: t('item.buyRequest.daysOnward'), label: t('travel.travelList.tableVisibleColumns.daysOnward'),
visible: false, visible: false,
columnFilter: { columnFilter: {
inWhere: false, inWhere: false,