8231_testToMaster_2448 #997

Merged
alexm merged 400 commits from 8231_testToMaster_2448 into master 2024-11-26 06:28:29 +00:00
2 changed files with 9 additions and 2 deletions
Showing only changes of commit 55ddc8644f - Show all commits

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,