From ba8456b920e157eefdf337732816ed4ec3b63ebd Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Tue, 14 Jun 2022 18:21:15 +0200 Subject: [PATCH] =?UTF-8?q?beim=20manuellen=20Waste-Import=20wird=20der=20?= =?UTF-8?q?last=20harbour=20Eintrag=20in=20Gro=C3=9Fbuchstaben=20verwandel?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ENI2/DetailViewControls/WasteDetailControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ENI2/DetailViewControls/WasteDetailControl.xaml.cs b/ENI2/DetailViewControls/WasteDetailControl.xaml.cs index 2850e023..a5fb8751 100644 --- a/ENI2/DetailViewControls/WasteDetailControl.xaml.cs +++ b/ENI2/DetailViewControls/WasteDetailControl.xaml.cs @@ -548,7 +548,7 @@ namespace ENI2.DetailViewControls if (!reader.IsDBNull(7)) o = reader.GetValue(7); else o = null; if (o != null) waste.WasteAmountRetained_MTQ = Convert.ToDouble(o); - if (!reader.IsDBNull(8)) waste.WasteDisposalPort = reader.GetString(8); + if (!reader.IsDBNull(8)) waste.WasteDisposalPort = reader.GetString(8).ToUpper(); if (!reader.IsDBNull(9)) o = reader.GetValue(9); else o = null; if (o != null) waste.WasteAmountGeneratedTillNextPort_MTQ = Convert.ToDouble(o);