From f9852f98f67b68a898c6eefa7224ffcb72914887 Mon Sep 17 00:00:00 2001 From: data Date: Thu, 5 Mar 2026 10:52:41 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20Multi-Invoice=20Match=20Score=20auf=2098?= =?UTF-8?q?=20erh=C3=B6ht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Multi-Invoice Matches werden jetzt bevorzugt angezeigt, da sie besser zum Transaktionsbetrag passen als Einzelmatches. Co-Authored-By: Claude Opus 4.5 --- class/banktransaction.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/banktransaction.class.php b/class/banktransaction.class.php index d9f57c2..a5814ac 100755 --- a/class/banktransaction.class.php +++ b/class/banktransaction.class.php @@ -1215,7 +1215,7 @@ class BankImportTransaction extends CommonObject 'invoices' => $matchedInvoices, 'total' => $runningTotal, 'difference' => $targetAmount - $runningTotal, - 'match_score' => abs($runningTotal - $targetAmount) < 0.01 ? 100 : 90 + 'match_score' => abs($runningTotal - $targetAmount) < 0.01 ? 100 : 98 ); }