0
0
Fork 0

Merge pull request 'refs #6905 fix bank select' (!322) from 6905-fixUserPanel into dev

Reviewed-on: verdnatura/salix-front#322
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Carlos Satorres 2024-04-26 06:56:50 +00:00
commit dbdcc7cdf1
1 changed files with 11 additions and 2 deletions

View File

@ -181,12 +181,21 @@ function copyUserToken() {
/>
<VnSelect
:label="t('components.userPanel.localBank')"
hide-selected
v-model="user.localBankFk"
:options="accountBankData"
option-label="bank"
option-value="id"
></VnSelect>
>
<template #option="{ itemProps, opt }">
<QItem v-bind="itemProps">
<QItemSection>
<QItemLabel>
{{ `${opt.id}: ${opt.bank}` }}
</QItemLabel>
</QItemSection>
</QItem>
</template>
</VnSelect>
</VnRow>
<VnRow>
<VnSelect