From 30129553fbc8791369f7bad93c479d03148a2e0e Mon Sep 17 00:00:00 2001 From: Alexandra Date: Tue, 28 Apr 2026 13:32:26 +0200 Subject: [PATCH] AviseImporter - Bugfix bei Klientname null SupportOID=161285 --- Service/Import/AvisImport/AviseImporter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Service/Import/AvisImport/AviseImporter.cs b/Service/Import/AvisImport/AviseImporter.cs index f77d5bf60..207eeccc7 100644 --- a/Service/Import/AvisImport/AviseImporter.cs +++ b/Service/Import/AvisImport/AviseImporter.cs @@ -104,10 +104,10 @@ namespace BeWo.Service.Import.AvisImport foreach (var avis in avise) { - if (avis.Klient.Contains("Noga")) - { + //if (avis.Klient != null && avis.Klient.Contains("Noga")) + //{ - } + //} var ir = ImportAbschlagszahlung(avis, hilfeplaene); result.Add(ir); }