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

View File

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