From e44b32f789c156f27ba5e1ef971b7021322157e9 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 26 Mar 2025 14:27:37 +0100 Subject: [PATCH] refactor: refs #8667 corrected function name and value --- src/pages/Customer/components/CustomerNewPayment.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/pages/Customer/components/CustomerNewPayment.vue b/src/pages/Customer/components/CustomerNewPayment.vue index d7843a5e1..fb3804d55 100644 --- a/src/pages/Customer/components/CustomerNewPayment.vue +++ b/src/pages/Customer/components/CustomerNewPayment.vue @@ -130,10 +130,9 @@ async function onDataSaved(formData, { id }) { } } -async function accountShortToStandard({ target: { value } }) { +async function getSupplierClientReferences(value) { if (!value) return (initialData.description = ''); - initialData.compensationAccount = value.replace('.', '0'.repeat(11 - value.length)); - const params = { bankAccount: initialData.compensationAccount }; + const params = { bankAccount: value }; const { data } = await axios(`Clients/getClientOrSupplierReference`, { params }); if (!data.clientId) { initialData.description = t('Supplier Compensation Reference', { @@ -252,7 +251,7 @@ async function getAmountPaid() { :label="t('Compensation account')" clearable v-model="data.compensationAccount" - @blur="accountShortToStandard" + @blur="getSupplierClientReferences(data.compensationAccount)" />