refs #6897 fix filters
This commit is contained in:
parent
9d1e7363ab
commit
a6bb9af1a7
|
@ -114,8 +114,15 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'companies',
|
url: 'companies',
|
||||||
fields: ['id', 'code'],
|
fields: ['id', 'code'],
|
||||||
|
optionLabel: 'code',
|
||||||
|
optionValue: 'id',
|
||||||
|
},
|
||||||
|
columnField: {
|
||||||
|
component: null,
|
||||||
},
|
},
|
||||||
create: true,
|
create: true,
|
||||||
|
|
||||||
|
format: (row, dashIfEmpty) => dashIfEmpty(row.companyCode),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -125,8 +132,14 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'travels',
|
url: 'travels',
|
||||||
fields: ['id', 'ref'],
|
fields: ['id', 'ref'],
|
||||||
|
optionLabel: 'ref',
|
||||||
|
optionValue: 'id',
|
||||||
|
},
|
||||||
|
columnField: {
|
||||||
|
component: null,
|
||||||
},
|
},
|
||||||
create: true,
|
create: true,
|
||||||
|
format: (row, dashIfEmpty) => dashIfEmpty(row.travelRef),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
|
Loading…
Reference in New Issue