From dc600a568b9191b4338c2a937948a58fbd01ca11 Mon Sep 17 00:00:00 2001 From: carlossa Date: Mon, 10 Mar 2025 08:42:14 +0100 Subject: [PATCH] fix: refs #8731 remove logs --- src/pages/Customer/components/CustomerNewPayment.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pages/Customer/components/CustomerNewPayment.vue b/src/pages/Customer/components/CustomerNewPayment.vue index 5c1e4044b..49ed99d3c 100644 --- a/src/pages/Customer/components/CustomerNewPayment.vue +++ b/src/pages/Customer/components/CustomerNewPayment.vue @@ -76,17 +76,14 @@ onBeforeMount(() => { function setPaymentType(data, accounting) { data.bankFk = accounting.id; - console.log('accounting: ', accounting); if (!accounting) return; accountingType.value = accounting.accountingType; - console.log('accountingType.value: ', accountingType.value); data.description = []; data.payed = Date.vnNew(); isCash.value = accountingType.value.code == 'cash'; viewReceipt.value = isCash.value; if (accountingType.value.daysInFuture) data.payed.setDate(data.payed.getDate() + accountingType.value.daysInFuture); - console.log('data.payed', data.payed); maxAmount.value = accountingType.value && accountingType.value.maxAmount; if (accountingType.value.code == 'compensation') return (data.description = '');