This commit is contained in:
commit
13d38c8b02
|
@ -36,7 +36,7 @@ const inputs = {
|
||||||
number: markRaw(VnInput),
|
number: markRaw(VnInput),
|
||||||
date: markRaw(VnInputDate),
|
date: markRaw(VnInputDate),
|
||||||
checkbox: markRaw(QCheckbox),
|
checkbox: markRaw(QCheckbox),
|
||||||
select: markRaw(VnSelectFilter),
|
select: markRaw(VnSelect),
|
||||||
};
|
};
|
||||||
|
|
||||||
const newValue = ref(null);
|
const newValue = ref(null);
|
||||||
|
|
|
@ -56,7 +56,7 @@ const suppliersOptions = ref([]);
|
||||||
<QItem class="q-my-md">
|
<QItem class="q-my-md">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('params.supplier')"
|
:label="t('components.itemsFilterPanel.supplierFk')"
|
||||||
v-model="params.supplierFk"
|
v-model="params.supplierFk"
|
||||||
:options="suppliersOptions"
|
:options="suppliersOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
|
|
@ -68,20 +68,6 @@ const suppliersRef = ref();
|
||||||
</VnInput>
|
</VnInput>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
:label="t('params.supplierRef')"
|
|
||||||
v-model="params.supplierRef"
|
|
||||||
is-outlined
|
|
||||||
lazy-rules
|
|
||||||
>
|
|
||||||
<template #prepend>
|
|
||||||
<QIcon name="vn:client" size="sm"></QIcon>
|
|
||||||
</template>
|
|
||||||
</VnInput>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInputDate :label="t('From')" v-model="params.from" is-outlined />
|
<VnInputDate :label="t('From')" v-model="params.from" is-outlined />
|
||||||
|
|
Loading…
Reference in New Issue