diff --git a/ENI2/Controls/EasyPeasyControl.xaml.cs b/ENI2/Controls/EasyPeasyControl.xaml.cs index bfc62ea2..122d9cf7 100644 --- a/ENI2/Controls/EasyPeasyControl.xaml.cs +++ b/ENI2/Controls/EasyPeasyControl.xaml.cs @@ -448,7 +448,7 @@ namespace ENI2.Controls if (TryParseDecimalFlexible(gross, out var g)) { item.GoodsMeasure.GrossMass = g; - var net = g - 1m; + var net = g; // - 1m; // now net mass equals gross mass (no deduction) if (net < 0m) net = 0m; item.GoodsMeasure.NetMass = net; }