From c5ce819a15147a7e08b3a7ec7d940f15bc1013b0 Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 22 Dec 2025 10:48:04 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Rettet=20typo=20i=20e-conomic=20sync=20(?= =?UTF-8?q?verifiot=5Fmatched=5Fcount=20=E2=86=92=20verified=5Fcount)=20og?= =?UTF-8?q?=20tilf=C3=B8jet=20not=5Fmatched=20til=20return=20value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/system/backend/sync_router.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/system/backend/sync_router.py b/app/system/backend/sync_router.py index 2ca3a13..a1205b6 100644 --- a/app/system/backend/sync_router.py +++ b/app/system/backend/sync_router.py @@ -377,13 +377,13 @@ async def sync_from_economic() -> Dict[str, Any]: else: not_matched_count += 1 - logger.info(f"✅ e-conomic sync fuldført: {matched_count} matchet, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") - nye matchet, {verified_count} verificeret, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") + logger.info(f"✅ e-conomic sync fuldført: {matched_count} nye matchet, {verified_count} verificeret, {not_matched_count} ikke matchet af {len(economic_customers)} totalt") return { "status": "success", "matched": matched_count, - "verified": verifiot_matched_count, + "verified": verified_count, + "not_matched": not_matched_count, "total_processed": len(economic_customers) }