forked from verdnatura/salix-front
refs #7283 fix itemMigration
This commit is contained in:
parent
06a1b3b409
commit
54015fb6bf
|
@ -117,6 +117,15 @@ const columns = computed(() => [
|
||||||
format: (row) => getState(row.isOk),
|
format: (row) => getState(row.isOk),
|
||||||
align: 'left',
|
align: 'left',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'daysOnward',
|
||||||
|
label: t('item.buyRequest.daysOnward'),
|
||||||
|
visible: false,
|
||||||
|
columnFilter: {
|
||||||
|
inWhere: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'right',
|
||||||
label: '',
|
label: '',
|
||||||
|
@ -238,6 +247,17 @@ onMounted(async () => {
|
||||||
{{ row.itemDescription }}
|
{{ row.itemDescription }}
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #moreFilterPanel="{ params }">
|
||||||
|
<VnInputNumber
|
||||||
|
:label="t('params.scopeDays')"
|
||||||
|
v-model.number="params.scopeDays"
|
||||||
|
@keyup.enter="(evt) => handleScopeDays(evt.target.value)"
|
||||||
|
@remove="handleScopeDays()"
|
||||||
|
class="q-px-xs q-pr-lg"
|
||||||
|
filled
|
||||||
|
dense
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
<template #column-denyOptions="{ row, rowIndex }">
|
<template #column-denyOptions="{ row, rowIndex }">
|
||||||
<QTd class="sticky no-padding">
|
<QTd class="sticky no-padding">
|
||||||
<QIcon
|
<QIcon
|
||||||
|
|
Loading…
Reference in New Issue