CambiosSolicitadosSuppliers #214

Merged
jgallego merged 21 commits from :CambiosSolicitadosSuppliers into dev 2024-03-13 14:38:00 +00:00
3 changed files with 13 additions and 2 deletions
Showing only changes of commit ac5d83b8cc - Show all commits

View File

@ -114,7 +114,7 @@ onMounted(() => {
:label="t('worker.create.bankEntity')"
jgallego marked this conversation as resolved Outdated

http://localhost:5000/#!/supplier/791/account entidad bancaria salix muestra BBKKESMMMMM en lilium muestra el banco, hay que hacer como en salix
al guardar y entrar de nuevo, sin desplegar debe mostrar el bic, no el nombre el banco como hace ahora

http://localhost:5000/#!/supplier/791/account entidad bancaria salix muestra BBKKESMMMMM en lilium muestra el banco, hay que hacer como en salix al guardar y entrar de nuevo, sin desplegar debe mostrar el bic, no el nombre el banco como hace ahora

Corregido

Commit: ff94d7e43d

Corregido Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/ff94d7e43d61a34f81fba0a67fd356d43f89ce8b
v-model="row.bankEntityFk"
:options="bankEntitiesOptions"
option-label="name"
option-label="bic"
option-value="id"
hide-selected
>

View File

@ -11,6 +11,15 @@ const route = useRoute();
const { t } = useI18n();
const supplierContactRef = ref(null);
const insertRow = () => {
supplierContactRef.value.insert();
setTimeout(() => {
const inputs = document.querySelectorAll('[input-name-focusable]');
const lastInput = inputs[inputs.length - 1];
if (lastInput) lastInput.focus();
}, 5);
};
onMounted(() => {
if (supplierContactRef.value) supplierContactRef.value.reload();
});
@ -38,6 +47,7 @@ onMounted(() => {
<VnRow class="row q-gutter-md">
<div class="col">
<VnInput
input-name-focusable
:label="t('supplier.contacts.name')"
v-model="row.name"
/>
@ -92,7 +102,7 @@ onMounted(() => {
size="sm"
class="cursor-pointer"
color="primary"
@click="supplierContactRef.insert()"
@click="insertRow()"
>
<QTooltip>
{{ t('Add contact') }}

View File

@ -167,6 +167,7 @@ const getEntryQueryParams = (supplier) => {
<QTooltip>{{ t('All entries with current supplier') }}</QTooltip>
</QBtn>
<QBtn
v-if="entity.client?.fi"
:to="{
name: 'CustomerCard',
params: { id: entity.client?.id },