From 11b7a196ddf5fe9a13af476f44c6037b5cc080b0 Mon Sep 17 00:00:00 2001 From: Developer01 Date: Tue, 8 Apr 2025 17:29:27 +0200 Subject: [PATCH] MS PropertyValues RowCount angepasst, weil Positions immer 1 war...Unklar warum! --- Interfaces/ZUGFeRDInterface/PropertyValues.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Interfaces/ZUGFeRDInterface/PropertyValues.vb b/Interfaces/ZUGFeRDInterface/PropertyValues.vb index efe09781..f5c98981 100644 --- a/Interfaces/ZUGFeRDInterface/PropertyValues.vb +++ b/Interfaces/ZUGFeRDInterface/PropertyValues.vb @@ -91,7 +91,7 @@ Public Class PropertyValues oPropertyList.Add(oProperty.Value, oPropertyValues) ' check the first batch of values to determine the row count - If oRowCount = 0 Then + If oRowCount = 0 Or oGroupScope = "POSITIONS" Then '08.04.2025 MS Added as Workaround for Positions! oRowCount = oPropertyValues.Count End If Next