|
|
@@ -102,9 +102,9 @@ namespace UAS_MES.Make
|
|
|
MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
|
|
|
BaseUtil.SetFormValue(this.Controls, dt);
|
|
|
if (Weight - MinWeight == MaxWeight - Weight)
|
|
|
- pr_colorboxgw.Text = Weight + "±" + (MaxWeight - Weight);
|
|
|
+ pr_colorboxgw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_colorboxunit"].ToString();
|
|
|
else
|
|
|
- pr_colorboxgw.Text = MinWeight + "-" + MaxWeight;
|
|
|
+ pr_colorboxgw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_colorboxunit"].ToString();
|
|
|
string oMakeCode = "";
|
|
|
string oMsID = "";
|
|
|
if (LogicHandler.CheckStepSNAndMacode(ms_makecode.Text, User.UserSourceCode, sncode.Text, User.UserCode, out oMakeCode, out oMsID, out ErrorMessage))
|