|
|
@@ -140,6 +140,11 @@ namespace UAS_MES.Make
|
|
|
double ActualWeight = double.Parse(weight.Text == "" ? "0" : weight.Text.Replace("kg", "").Trim());
|
|
|
if (PR_CHECKCOLORBOXW != "0")
|
|
|
{
|
|
|
+ if (MinWeight == 0 || MaxWeight == 0)
|
|
|
+ {
|
|
|
+ OperateResult.AppendText(">>产品" + pr_code.Text + "未维护彩盒重量范围\n", Color.Red);
|
|
|
+ return;
|
|
|
+ }
|
|
|
if ((ActualWeight >= MinWeight) && (ActualWeight <= MaxWeight))
|
|
|
{
|
|
|
OperateResult.AppendText(">>彩盒" + sncode.Text + "重量检测检测合格\n", Color.Green);
|