Merge pull request 'testToDev' (!1119) from testToDev into dev
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
Reviewed-on: #1119 Reviewed-by: Carlos Andrés <carlosap@verdnatura.es>
This commit is contained in:
commit
8b3b74a972
|
@ -379,7 +379,8 @@ function handleKeyDown(event) {
|
|||
</template>
|
||||
<template #option="{ opt, itemProps }">
|
||||
<QItem v-bind="itemProps">
|
||||
<QItemSection v-if="opt[optionValue] == opt[optionLabel]">
|
||||
<QItemSection v-if="typeof opt !== 'object'"> {{ opt }}</QItemSection>
|
||||
<QItemSection v-else-if="opt[optionValue] == opt[optionLabel]">
|
||||
<QItemLabel>{{ opt[optionLabel] }}</QItemLabel>
|
||||
</QItemSection>
|
||||
<QItemSection v-else>
|
||||
|
|
|
@ -116,6 +116,7 @@ function deleteFile(dmsFk) {
|
|||
<template #form="{ data }">
|
||||
<VnRow>
|
||||
<VnSelect
|
||||
:required="true"
|
||||
:label="t('supplierFk')"
|
||||
v-model="data.supplierFk"
|
||||
option-value="id"
|
||||
|
@ -244,6 +245,8 @@ function deleteFile(dmsFk) {
|
|||
</VnRow>
|
||||
<VnRow>
|
||||
<VnSelect
|
||||
:required="true"
|
||||
:is-clearable="false"
|
||||
:label="t('Currency')"
|
||||
v-model="data.currencyFk"
|
||||
:options="currencies"
|
||||
|
@ -253,6 +256,8 @@ function deleteFile(dmsFk) {
|
|||
/>
|
||||
|
||||
<VnSelect
|
||||
:required="true"
|
||||
:is-clearable="false"
|
||||
v-if="companiesRef"
|
||||
:label="t('Company')"
|
||||
v-model="data.companyFk"
|
||||
|
|
Loading…
Reference in New Issue