fix: fix invoiceOut filter #1038

Merged
carlossa merged 2 commits from hotfix-6899invoiceOut into master 2024-12-04 08:21:59 +00:00
1 changed files with 4 additions and 2 deletions

View File

@ -37,7 +37,7 @@ const columns = computed(() => [
}, },
isId: true, isId: true,
columnFilter: { columnFilter: {
name: 'search', name: 'id',
}, },
}, },
{ {
@ -74,7 +74,9 @@ const columns = computed(() => [
component: 'select', component: 'select',
attrs: { attrs: {
url: 'Clients', url: 'Clients',
fields: ['id', 'name'], fields: ['id', 'socialName'],
optionLabel: 'socialName',
optionValue: 'id',
}, },
columnField: { columnField: {
component: null, component: null,