fix dbh send version string

This commit is contained in:
Daniel Schick 2025-01-31 15:58:57 +01:00
parent 006a253fd7
commit 071b0ff5ee
2 changed files with 2 additions and 5 deletions

View File

@ -249,7 +249,7 @@ namespace bsmd.dbh.Request
{ {
/// <remarks/> /// <remarks/>
[System.Xml.Serialization.XmlEnumAttribute("7.2")] [System.Xml.Serialization.XmlEnumAttribute("7.2.1")]
Item72, Item72,
} }

View File

@ -4,9 +4,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization; using System.Xml.Serialization;
using bsmd.database; using bsmd.database;
using log4net; using log4net;
@ -26,7 +23,7 @@ namespace bsmd.dbh
{ {
Root root = new Root(); Root root = new Root();
root.Version = RootVersion.Item72; root.Version = RootVersion.Item72;
root.SourceDocumentVersion = "7.2"; root.SourceDocumentVersion = "7.2.1";
root.Timestamp = DateTime.Now; root.Timestamp = DateTime.Now;
string filenameComponent; string filenameComponent;