From 4c5893c75b468df0dc883e2b9eb8ac0f34a7e12a Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 1 Feb 2023 17:28:24 +0100 Subject: [PATCH 1/9] =?UTF-8?q?Version=20erh=C3=B6ht=20und=20HIS-Nord=20wi?= =?UTF-8?q?eder=20den=20Default=20der=20Anmeldung=20gemacht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ENI2/ENI2.csproj | 4 ++-- ENI2/EditControls/VisitIdDialog.xaml.cs | 2 +- bsmd.database/Properties/AssemblyProductInfo.cs | 2 +- bsmd.database/Properties/AssemblyProjectInfo.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ENI2/ENI2.csproj b/ENI2/ENI2.csproj index 3492ba13..732b0f1b 100644 --- a/ENI2/ENI2.csproj +++ b/ENI2/ENI2.csproj @@ -36,8 +36,8 @@ 5.4.0.0 true publish.html - 4 - 7.8.0.%2a + 0 + 7.8.1.%2a false true true diff --git a/ENI2/EditControls/VisitIdDialog.xaml.cs b/ENI2/EditControls/VisitIdDialog.xaml.cs index 8c065771..6453e2f7 100644 --- a/ENI2/EditControls/VisitIdDialog.xaml.cs +++ b/ENI2/EditControls/VisitIdDialog.xaml.cs @@ -35,7 +35,7 @@ namespace ENI2.EditControls }; this.comboBoxInitialHIS.ItemsSource = comboDataSource; - this.comboBoxInitialHIS.SelectedIndex = 1; + this.comboBoxInitialHIS.SelectedIndex = 0; this.EnableOK(false); this.locodePoC.PropertyChanged += LocodePoC_PropertyChanged; diff --git a/bsmd.database/Properties/AssemblyProductInfo.cs b/bsmd.database/Properties/AssemblyProductInfo.cs index 564ff8ca..229436f1 100644 --- a/bsmd.database/Properties/AssemblyProductInfo.cs +++ b/bsmd.database/Properties/AssemblyProductInfo.cs @@ -2,6 +2,6 @@ [assembly: AssemblyCompany("schick Informatik")] [assembly: AssemblyProduct("BSMD NSW interface")] -[assembly: AssemblyInformationalVersion("7.8.0")] +[assembly: AssemblyInformationalVersion("7.8.1")] [assembly: AssemblyCopyright("Copyright © 2014-2022 schick Informatik")] [assembly: AssemblyTrademark("")] \ No newline at end of file diff --git a/bsmd.database/Properties/AssemblyProjectInfo.cs b/bsmd.database/Properties/AssemblyProjectInfo.cs index 046c0723..eaba9da0 100644 --- a/bsmd.database/Properties/AssemblyProjectInfo.cs +++ b/bsmd.database/Properties/AssemblyProjectInfo.cs @@ -1,4 +1,4 @@ using System.Reflection; -[assembly: AssemblyVersion("7.8.0.*")] +[assembly: AssemblyVersion("7.8.1.*")] From da475a475462a6181c21fe8a2b598887f33c349a Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 1 Feb 2023 17:44:45 +0100 Subject: [PATCH 2/9] Rundungsfehler durch sinnlosen Cast entfernt --- bsmd.database/LADG.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsmd.database/LADG.cs b/bsmd.database/LADG.cs index 61c133cc..f5267c9a 100644 --- a/bsmd.database/LADG.cs +++ b/bsmd.database/LADG.cs @@ -199,7 +199,7 @@ namespace bsmd.database if (!reader.IsDBNull(1)) ladg.CargoHandlingType = reader.GetByte(1); if (!reader.IsDBNull(2)) ladg.CargoCodeNST = reader.GetString(2); if (!reader.IsDBNull(3)) ladg.CargoNumberOfItems = reader.GetInt32(3); - if (!reader.IsDBNull(4)) ladg.CargoGrossQuantity_TNE = (float) reader.GetDouble(4); + if (!reader.IsDBNull(4)) ladg.CargoGrossQuantity_TNE = reader.GetDouble(4); if (!reader.IsDBNull(5)) ladg.PortOfLoading = reader.GetString(5); if (!reader.IsDBNull(6)) ladg.PortOfDischarge = reader.GetString(6); if (!reader.IsDBNull(7)) ladg.Identifier = reader.GetString(7); From 2faec717b8a966043e2fd5f39811cdcdcb6f94a5 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 1 Feb 2023 18:26:04 +0100 Subject: [PATCH 3/9] Testversion erzeugt --- ENI2/ENI2.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ENI2/ENI2.csproj b/ENI2/ENI2.csproj index 732b0f1b..2f9ffd0a 100644 --- a/ENI2/ENI2.csproj +++ b/ENI2/ENI2.csproj @@ -84,7 +84,7 @@ - F2C2D0164244EC89955EF50201EE24C2A300FF0B + 62DE8527C377957850DB503DA52FF66F664BD459 true From 304f4d74040b5f9418bb944cd953d455d2592ab6 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Thu, 2 Feb 2023 13:19:21 +0100 Subject: [PATCH 4/9] =?UTF-8?q?Signing=20key=20f=C3=BCr=20die=20Testversio?= =?UTF-8?q?n=20ist=20der=20heupferd=20Schl=C3=BCssel.=20Sonst=20konnte=20C?= =?UTF-8?q?hristin=20nicht=20installieren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ENI2/ENI2.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ENI2/ENI2.csproj b/ENI2/ENI2.csproj index 2f9ffd0a..732b0f1b 100644 --- a/ENI2/ENI2.csproj +++ b/ENI2/ENI2.csproj @@ -84,7 +84,7 @@ - 62DE8527C377957850DB503DA52FF66F664BD459 + F2C2D0164244EC89955EF50201EE24C2A300FF0B true From 114b9db663ccbaea18b6e508bf93ec35e6a76f22 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Thu, 26 Jan 2023 07:49:19 +0100 Subject: [PATCH 5/9] version bump --- ENI2/ENI2.csproj | 2 +- bsmd.database/Properties/AssemblyProductInfo.cs | 2 +- bsmd.database/Properties/AssemblyProjectInfo.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ENI2/ENI2.csproj b/ENI2/ENI2.csproj index 732b0f1b..6b5c5246 100644 --- a/ENI2/ENI2.csproj +++ b/ENI2/ENI2.csproj @@ -37,7 +37,7 @@ true publish.html 0 - 7.8.1.%2a + 7.9.0.%2a false true true diff --git a/bsmd.database/Properties/AssemblyProductInfo.cs b/bsmd.database/Properties/AssemblyProductInfo.cs index 229436f1..2dc6a129 100644 --- a/bsmd.database/Properties/AssemblyProductInfo.cs +++ b/bsmd.database/Properties/AssemblyProductInfo.cs @@ -2,6 +2,6 @@ [assembly: AssemblyCompany("schick Informatik")] [assembly: AssemblyProduct("BSMD NSW interface")] -[assembly: AssemblyInformationalVersion("7.8.1")] +[assembly: AssemblyInformationalVersion("7.9.0")] [assembly: AssemblyCopyright("Copyright © 2014-2022 schick Informatik")] [assembly: AssemblyTrademark("")] \ No newline at end of file diff --git a/bsmd.database/Properties/AssemblyProjectInfo.cs b/bsmd.database/Properties/AssemblyProjectInfo.cs index eaba9da0..3d2ff33a 100644 --- a/bsmd.database/Properties/AssemblyProjectInfo.cs +++ b/bsmd.database/Properties/AssemblyProjectInfo.cs @@ -1,4 +1,4 @@ using System.Reflection; -[assembly: AssemblyVersion("7.8.1.*")] +[assembly: AssemblyVersion("7.9.0.*")] From b94835ee4bddf1be7084724b8d0a439e039c971d Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Fri, 3 Feb 2023 14:13:15 +0100 Subject: [PATCH 6/9] =?UTF-8?q?POListControl=20umbenannt,=20neue=20=C3=9Cb?= =?UTF-8?q?ersicht=20mit=20Tabs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...istControl.xaml => MaerskListControl.xaml} | 112 ++-- ...trol.xaml.cs => MaerskListControl.xaml.cs} | 556 +++++++++--------- ENI2/Controls/MaerskOverviewControl.xaml | 12 + ENI2/Controls/MaerskOverviewControl.xaml.cs | 28 + ENI2/ENI2.csproj | 13 +- ENI2/MainWindow.xaml.cs | 8 +- 6 files changed, 388 insertions(+), 341 deletions(-) rename ENI2/Controls/{POListControl.xaml => MaerskListControl.xaml} (97%) rename ENI2/Controls/{POListControl.xaml.cs => MaerskListControl.xaml.cs} (96%) create mode 100644 ENI2/Controls/MaerskOverviewControl.xaml create mode 100644 ENI2/Controls/MaerskOverviewControl.xaml.cs diff --git a/ENI2/Controls/POListControl.xaml b/ENI2/Controls/MaerskListControl.xaml similarity index 97% rename from ENI2/Controls/POListControl.xaml rename to ENI2/Controls/MaerskListControl.xaml index cafbeb49..e00d047a 100644 --- a/ENI2/Controls/POListControl.xaml +++ b/ENI2/Controls/MaerskListControl.xaml @@ -1,56 +1,56 @@ - - - - - - - - - - - - - - - - -