0
0
Fork 0
This commit is contained in:
Alex Moreno 2024-09-25 12:53:12 +02:00
commit 8dd2c44832
2 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const customer = computed(() => state.get('customer'));
const bankEntityFormData = reactive({ const bankEntityFormData = reactive({
name: null, name: null,
bic: null, bic: null,
countryFk: customer.value.countryFk, countryFk: customer.value?.countryFk,
id: null, id: null,
}); });

View File

@ -113,6 +113,7 @@ const setWireTransfer = async () => {
option-label="bic" option-label="bic"
option-value="id" option-value="id"
hide-selected hide-selected
:roles-allowed-to-create="['financial']"
> >
<template #form> <template #form>
<CreateBankEntityForm <CreateBankEntityForm