luanhui 8 years ago
parent
commit
42276c56b7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      SegmentationWeight/SegmentationWeightForm.cs

+ 2
- 2
SegmentationWeight/SegmentationWeightForm.cs View File

@ -617,11 +617,11 @@ namespace SegmentationWeight
{ {
if (set.StandardWeightUp.HasValue && record.Weight > set.StandardWeightUp.Value) if (set.StandardWeightUp.HasValue && record.Weight > set.StandardWeightUp.Value)
{ {
MessageBox.Show("当前重量:"+record.Weight+" 不允许大于标准重量上限:"+ set.StandardWeightUp.Value);
// MessageBox.Show("当前重量:"+record.Weight+" 不允许大于标准重量上限:"+ set.StandardWeightUp.Value);
} }
if (set.StandardWeightLow.HasValue && record.Weight < set.StandardWeightLow.Value) if (set.StandardWeightLow.HasValue && record.Weight < set.StandardWeightLow.Value)
{ {
MessageBox.Show("当前重量:" + record.Weight + " 不允许小于标准重量下限:" + set.StandardWeightLow.Value);
// MessageBox.Show("当前重量:" + record.Weight + " 不允许小于标准重量下限:" + set.StandardWeightLow.Value);
} }
else else
{ {


Loading…
Cancel
Save