|
@@ -4988,7 +4988,7 @@ namespace wms.service.Service
|
|
|
StandardWeight = stock.TolWQty,
|
|
|
UpperDeviationLimit = Convert.ToDecimal(config.Default1),
|
|
|
LowerDeviationLimit = Convert.ToDecimal(config.Default2),
|
|
|
- IsOutOfTolerance = request.Weight < upperDeviationLimit && request.Weight > lowerDeviationLimit ? true : false
|
|
|
+ IsOutOfTolerance = request.Weight < upperDeviationLimit || request.Weight > lowerDeviationLimit ? true : false
|
|
|
};
|
|
|
_baseWeighingResult.InsertReturnEntity(weighingResult);
|
|
|
//上安灯系统
|