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);