Make_CartonBoxWeigh2N.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. using LabelManager2;
  2. using Microsoft.Win32;
  3. using System;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.IO.Ports;
  8. using System.Text;
  9. using System.Text.RegularExpressions;
  10. using System.Threading;
  11. using System.Windows.Forms;
  12. using UAS_MES.DataOperate;
  13. using UAS_MES.Entity;
  14. using UAS_MES.PublicForm;
  15. using UAS_MES.PublicMethod;
  16. namespace UAS_MES.Make
  17. {
  18. public partial class Make_CartonBoxWeigh2N : Form
  19. {
  20. AutoSizeFormClass asc = new AutoSizeFormClass();
  21. DataHelper dh;
  22. DataTable dt;
  23. LogStringBuilder sql = new LogStringBuilder();
  24. ApplicationClass lbl;
  25. Document doc;
  26. Regex re = new Regex("\\d+.\\d+\\w+");
  27. Thread thread;
  28. string PR_CHECKCARTONW = "0";
  29. //创建串口实例
  30. SerialPort serialPort1 = new SerialPort();
  31. //true的时候表示从串口读取数据
  32. bool GetData = true;
  33. //箱内总数
  34. int pa_totalqty;
  35. //称量的标准重量
  36. Double Weight;
  37. //最大重量
  38. Double MaxWeight;
  39. //最小重量
  40. Double MinWeight;
  41. DataTable ListC = new DataTable();
  42. Thread InitPrint;
  43. public Make_CartonBoxWeigh2N()
  44. {
  45. InitializeComponent();
  46. }
  47. protected override void OnVisibleChanged(EventArgs e)
  48. {
  49. base.OnVisibleChanged(e);
  50. if (!IsHandleCreated)
  51. {
  52. this.Close();
  53. }
  54. }
  55. private void 卡通箱称重_Load(object sender, EventArgs e)
  56. {
  57. CheckForIllegalCrossThreadCalls = false;
  58. asc.controllInitializeSize(this);
  59. ComList.Text = BaseUtil.GetCacheData("PortName").ToString();
  60. BaudRate.Text = BaseUtil.GetCacheData("BaudRate").ToString();
  61. InitPrint = new Thread(InPrint);
  62. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "初始化打印程序");
  63. BaseUtil.SetFormCenter(stw);
  64. stw.ShowDialog();
  65. StartWeight.PerformClick();
  66. dh = SystemInf.dh;
  67. StepCount.StepCode = User.CurrentStepCode;
  68. StepCount.Source = User.UserSourceCode;
  69. StepCount.LineCode = User.UserLineCode;
  70. StepCount.Dh = dh;
  71. StepCount.Start();
  72. }
  73. private void InPrint()
  74. {
  75. try
  76. {
  77. lbl = new ApplicationClass();
  78. BaseUtil.WriteLbl();
  79. }
  80. catch (Exception)
  81. {
  82. OperateResult.AppendText("未正确安装CodeSoft软件\n", Color.Red);
  83. }
  84. }
  85. private void 卡通箱称重_SizeChanged(object sender, EventArgs e)
  86. {
  87. weight.Location = new Point(weight_label.Location.X + weight_label.Size.Width - 10, weight_label.Location.Y - 20);
  88. asc.controlAutoSize(this);
  89. }
  90. private void sncode_KeyDown(object sender, KeyEventArgs e)
  91. {
  92. if (e.KeyCode == Keys.Enter)
  93. {
  94. //根据箱号查询表单数据
  95. sql.Clear();
  96. sql.Append("select pa_totalqty,ma_code,ma_qty,ma_salecode,PA_STANDARDQTY,PA_CURRENTQTY,pr_detail,pr_cartonunit,pr_code,pr_cartongw,");
  97. sql.Append("pr_cartonmaxw,pr_cartonminw,nvl(PR_CHECKCARTONW,'0') PR_CHECKCARTONW,nvl(pr_sendchecktype,'LineCode')pr_sendchecktype,nvl(ma_iflpn_user,0)ma_iflpn_user from package left join packagedetail ");
  98. sql.Append("on pa_id=pd_paid left join makeserial on ms_sncode=pd_barcode and ms_makecode=pa_makecode left join product on pr_code=pd_prodcode left join make on ma_code=pd_makecode ");
  99. sql.Append(" where pa_outboxcode='" + outboxcode.Text + "' and pa_nextstep='" + User.CurrentStepCode + "'");
  100. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  101. //填充打印文件选项的DataGridView
  102. if (dt.Rows.Count > 0)
  103. {
  104. BaseUtil.SetFormValue(this.Controls, dt);
  105. string ErrorMessage = "";
  106. //重量的临时变量
  107. PR_CHECKCARTONW = dt.Rows[0]["PR_CHECKCARTONW"].ToString();
  108. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  109. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  110. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  111. string pa_pr_cartonunit = dt.Rows[0]["pr_cartonunit"].ToString();
  112. string PA_STANDARDQTY = dt.Rows[0]["PA_STANDARDQTY"].ToString();
  113. string PA_CURRENTQTY = dt.Rows[0]["PA_CURRENTQTY"].ToString();
  114. string ma_iflpn_user = dt.Rows[0]["ma_iflpn_user"].ToString();
  115. Weight = double.Parse(_weight == "" ? "0" : _weight);
  116. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  117. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  118. pa_totalqty = int.Parse(dt.Rows[0]["pa_totalqty"].ToString());
  119. if (Weight - MinWeight == MaxWeight - Weight)
  120. pr_cartongw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  121. else
  122. pr_cartongw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  123. double ActualWeight = double.Parse(weight.Text == "" ? "0" : weight.Text.Replace("kg", "").Trim());
  124. if (sncheck.Checked && sn.Text == "" && SN2.Text != "")
  125. {
  126. OperateResult.AppendText(">>SN校验不可为空\n", Color.Red);
  127. sn.Text = "";
  128. outboxcode.Text = "";
  129. sn.Focus();
  130. return;
  131. }
  132. if (sn.Text != "" && !dh.CheckExist("packagedetail", "pd_outboxcode = '" + outboxcode.Text + "' and pd_barcode = '" + sn.Text + "'"))
  133. {
  134. OperateResult.AppendText(">>SN:" + sn.Text + "不存在与箱号:" + outboxcode.Text + "中\n", Color.Red);
  135. sn.Text = "";
  136. outboxcode.Text = "";
  137. sn.Focus();
  138. return;
  139. }
  140. if (SN2.Text != "" && !dh.CheckExist("packagedetail", "pd_outboxcode = '" + outboxcode.Text + "' and pd_barcode = '" + SN2.Text + "'"))
  141. {
  142. OperateResult.AppendText(">>SN:" + sn.Text + "不存在与箱号:" + outboxcode.Text + "中\n", Color.Red);
  143. sn.Text = "";
  144. outboxcode.Text = "";
  145. sn.Focus();
  146. return;
  147. }
  148. //需要检查称重重量
  149. if (PR_CHECKCARTONW != "0" && PA_STANDARDQTY == PA_CURRENTQTY)
  150. {
  151. //称量合格或不合格都记录重量
  152. if (ActualWeight >= MinWeight && ActualWeight <= MaxWeight && ActualWeight != 0)
  153. {
  154. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱" + outboxcode.Text + "称重", "称量合格:" + weight.Text.Trim(), outboxcode.Text, "");
  155. LogicHandler.RecordProdWeight(outboxcode.Text, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  156. OperateResult.AppendText(">>箱号" + outboxcode.Text + "检测合格\n", Color.Green);
  157. }
  158. else
  159. {
  160. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱" + outboxcode.Text + "称重", "称量不合格:" + weight.Text.Trim(), outboxcode.Text, "");
  161. LogicHandler.RecordProdWeight(outboxcode.Text, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  162. OperateResult.AppendText(">>箱号" + outboxcode.Text + "检测未通过\n", Color.Red, outboxcode);
  163. sn.Text = "";
  164. if (sncheck.Checked)
  165. {
  166. sn.Focus();
  167. }
  168. return;
  169. }
  170. }
  171. else
  172. {
  173. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱" + outboxcode.Text + "称重", "称量完成:" + weight.Text.Trim(), outboxcode.Text, "");
  174. LogicHandler.RecordProdWeight(outboxcode.Text, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  175. }
  176. dh.UpdateByCondition("package", "pa_printcount= nvl(pa_printcount,0)+1,pa_weight='" + ActualWeight + "',pa_status=1,pa_packageqty=pa_currentqty,pa_totalqty=pa_currentqty", "pa_outboxcode='" + outboxcode.Text + "'");
  177. if (AutoPrint.Checked)
  178. {
  179. if (PrintLabel.Items.Count > 0)
  180. {
  181. Confirm.PerformClick();
  182. }
  183. else
  184. {
  185. OperateResult.AppendText(">>产品" + pr_code.Text + "未维护卡通标签\n", Color.Red);
  186. }
  187. }
  188. ListViewItem lsi = new ListViewItem();
  189. lsi.SubItems.Add(outboxcode.Text);
  190. lsi.SubItems.Add(ActualWeight.ToString() + pr_cartonunit.Text);
  191. lsi.SubItems.Add(System.DateTime.Now.ToString());
  192. WeighRecord.Items.Add(lsi);
  193. OperateResult.AppendText(">>箱号" + outboxcode.Text + "称重完成\n", Color.Green);
  194. //if (LogicHandler.CartonBoxStepPass(ma_code.Text, User.UserSourceCode, outboxcode.Text, User.UserCode, "卡通箱:" + outboxcode.Text + "整箱过站", out ErrorMessage))
  195. //{
  196. // dh.UpdateByCondition("package", "pa_printcount= nvl(pa_printcount,0)+1,pa_weight='" + ActualWeight + "',pa_status=1,pa_packageqty=pa_currentqty,pa_totalqty=pa_currentqty", "pa_outboxcode='" + outboxcode.Text + "'");
  197. // dh.UpdateByCondition("package", "pa_nextstep='" + dh.getFieldDataByCondition("packagedetail left join makeserial on ms_sncode=pd_barcode and ms_makecode=pd_makecode", "max(ms_nextstepcode)", "pd_outboxcode='" + outboxcode.Text + "'").ToString() + "' ,PA_CURRENTSTEP = '' ", "pa_outboxcode='" + outboxcode.Text + "'");
  198. //}
  199. //else
  200. //{
  201. // OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red);
  202. //}
  203. DataTable dt1 = (DataTable)dh.ExecuteSql("select wm_concat(ms_sncode) from makeserial where ms_downstatus=-1 and ms_outboxcode='" + outboxcode.Text + "'", "select");
  204. if (dt1.Rows.Count > 0)
  205. {
  206. if (dt1.Rows[0][0].ToString() != "")
  207. {
  208. OperateResult.AppendText(">序列号:" + dt1.Rows[0][0].ToString() + "处于下地状态,箱不允许过站\n", Color.Red);
  209. return;
  210. }
  211. }
  212. if (!LogicHandler.OutBoxStepPass(outboxcode.Text, ma_code.Text, User.UserSourceCode, User.UserCode, "卡通箱:" + outboxcode.Text + "整箱过站", "卡通箱整箱过站", out ErrorMessage))
  213. {
  214. OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red, outboxcode);
  215. sn.Text = "";
  216. if (sncheck.Checked)
  217. {
  218. sn.Focus();
  219. }
  220. return;
  221. }
  222. dh.UpdateByCondition("package", "pa_nextstep='" + dh.getFieldDataByCondition("packagedetail left join makeserial on ms_sncode=pd_barcode and ms_makecode=pd_makecode", "max(ms_nextstepcode)", "pd_outboxcode='" + outboxcode.Text + "'").ToString() + "' ,PA_CURRENTSTEP = '' ", "pa_outboxcode='" + outboxcode.Text + "'");
  223. LoadCheckQTY();
  224. outboxcode.Clear();
  225. sn.Text = "";
  226. if (sncheck.Checked)
  227. {
  228. sn.Focus();
  229. }
  230. }
  231. else
  232. {
  233. OperateResult.AppendText(">>箱号" + outboxcode.Text + "当前执行工序不是" + User.CurrentStepCode + "\n", Color.Red, outboxcode);
  234. sn.Text = "";
  235. if (sncheck.Checked)
  236. {
  237. sn.Focus();
  238. }
  239. }
  240. }
  241. }
  242. private void getSerialData()
  243. {
  244. if (serialPort1.IsOpen)
  245. {
  246. if (!SystemInf.OpenPort.Contains(serialPort1.PortName))
  247. {
  248. SystemInf.OpenPort.Add(serialPort1.PortName);
  249. try
  250. {
  251. while (GetData)
  252. {
  253. try
  254. {
  255. weight.Text = re.Match(serialPort1.ReadLine().Trim()).Groups[0].Value;
  256. }
  257. catch (Exception)
  258. {
  259. GetData = false;
  260. }
  261. }
  262. }
  263. catch (IOException ex) { OperateResult.AppendText(">>" + ex.Message + "\n", Color.Red, outboxcode); }
  264. }
  265. else OperateResult.AppendText(">>端口已被占用,请关闭其他窗口\n", Color.Red, outboxcode);
  266. }
  267. }
  268. //确认打印
  269. private void Confirm_Click(object sender, EventArgs e)
  270. {
  271. //doc = lbl.Documents.Open(PrintLabel.Text);
  272. string ErrorMessage = "";
  273. if (!Print.CodeSoft(Tag.ToString(), ref lbl, PrintLabel.Text, PrintLabel.SelectedValue.ToString(), PrinterList.Text, outboxcode.Text, int.Parse(PrintNum.Text), ma_code.Text, pr_code.Text, "卡通箱标", "0", out ErrorMessage))
  274. {
  275. OperateResult.AppendText(ErrorMessage + "\n", Color.Red);
  276. }
  277. }
  278. //停止进程,关闭串口
  279. private void StopWeight_Click(object sender, EventArgs e)
  280. {
  281. if (serialPort1.IsOpen)
  282. {
  283. GetData = false;
  284. serialPort1.Close();
  285. SystemInf.OpenPort.Remove(serialPort1.PortName);
  286. thread.Abort();
  287. }
  288. }
  289. //关闭窗口的时候停止进程,不再读取串口数据
  290. private void 卡通箱称重_FormClosing(object sender, FormClosingEventArgs e)
  291. {
  292. BaseUtil.ClosePrint(lbl);
  293. StopWeight.PerformClick();
  294. InitPrint.Abort();
  295. if (serialPort1.IsOpen)
  296. {
  297. GetData = false;
  298. serialPort1.Close();
  299. SystemInf.OpenPort.Remove(serialPort1.PortName);
  300. thread.Interrupt();
  301. }
  302. //thread.Abort();
  303. }
  304. private void StartWeight_Click(object sender, EventArgs e)
  305. {
  306. thread = new Thread(getSerialData);
  307. try
  308. {
  309. GetData = true;
  310. serialPort1.PortName = this.ComList.Text;
  311. serialPort1.BaudRate = int.Parse(BaudRate.Text);
  312. serialPort1.Open();
  313. thread.Start();
  314. }
  315. catch (Exception mes)
  316. {
  317. if (BaudRate.Text == "" || ComList.Text == "")
  318. OperateResult.AppendText(">>请先在电子秤调试界面维护波特率和串口\n", Color.Red);
  319. else
  320. OperateResult.AppendText(">>" + mes.Message + "\n", Color.Red);
  321. }
  322. }
  323. private void pr_code_TextChanged(object sender, EventArgs e)
  324. {
  325. dt = (DataTable)dh.ExecuteSql("select la_id,la_url,la_isdefault from label where la_prodcode='" + pr_code.Text + "' and la_templatetype='卡通箱标' and la_statuscode='AUDITED' order by la_isdefault", "select");
  326. PrintLabel.DataSource = dt;
  327. PrintLabel.DisplayMember = "la_url";
  328. PrintLabel.ValueMember = "la_id";
  329. }
  330. private void PrintLabel_SelectedValueChanged(object sender, EventArgs e)
  331. {
  332. if (PrintLabel.SelectedValue != null && PrintLabel.SelectedValue.ToString() != "System.Data.DataRowView")
  333. {
  334. string PrintNums = dh.getFieldDataByCondition("label", "la_printnos", "la_id='" + PrintLabel.SelectedValue.ToString() + "'").ToString();
  335. PrintNum.Text = (PrintNums == "" ? "1" : PrintNums);
  336. }
  337. }
  338. private void SendCheck_Click(object sender, EventArgs e)
  339. {
  340. DataTable dt = (DataTable)dh.ExecuteSql("select wm_concat(pa_outboxcode) pa_outboxcode from package where pa_checkno='" + ob_checkno.Text + "' and pa_status=0 ", "select");
  341. if (dt.Rows[0][0].ToString() != "")
  342. {
  343. OperateResult.AppendText(">>批次" + ob_checkno.Text + "存在箱号" + dt.Rows[0][0].ToString() + "未封箱,请先进行封箱\n", Color.Red);
  344. return;
  345. }
  346. sql.Clear();
  347. sql.Append("update oqcbatch set ob_status='UNCHECK',ob_breakingdate=sysdate where ob_checkno ='" + ob_checkno.Text + "'");
  348. dh.ExecuteSql(sql.GetString(), "select");
  349. ob_nowcheckqty.Text = "";
  350. ob_batchqty.Text = "";
  351. ob_nowcheckqty.ForeColor = Color.Black;
  352. SendCheck.Enabled = false;
  353. OperateResult.AppendText(">>批次" + ob_checkno.Text + "送检成功\n", Color.Green);
  354. LogicHandler.InsertMakeProcess("", ma_code.Text, User.UserSourceCode, "手动送检", "手动送检成功", User.UserCode);
  355. //记录操作日志
  356. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "手动送检", "手动送检成功", "", ob_checkno.Text);
  357. ob_checkno.Text = "";
  358. }
  359. bool AutoCut;
  360. private void LoadCheckQTY()
  361. {
  362. sql.Clear();
  363. string condition = "";
  364. int nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  365. int batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  366. if (nowcheckqty + 1 == batchqty && AutoCut)
  367. {
  368. condition = "and ob_status='UNCHECK' and ob_checkno='" + ob_checkno.Text + "'";
  369. }
  370. else
  371. {
  372. condition = "and ob_status='ENTERING' ";
  373. }
  374. if (pr_sendchecktype.Text == "SaleCode")
  375. {
  376. condition += " and ob_salecode='" + ma_salecode.Text + "'";
  377. }
  378. else if (pr_sendchecktype.Text == "MakeCode")
  379. {
  380. condition += " and ob_makecode='" + ma_code.Text + "'";
  381. }
  382. sql.Append("select ob_batchqty,ob_nowcheckqty,ob_checkno from oqcbatch where ");
  383. sql.Append("ob_linecode='" + User.UserLineCode + "' and ob_prodcode='" + pr_code.Text + "' and ");
  384. sql.Append("ob_stepcode='" + User.CurrentStepCode + "' " + condition);
  385. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  386. if (dt.Rows.Count > 0)
  387. {
  388. ob_batchqty.Text = dt.Rows[0]["ob_batchqty"].ToString();
  389. ob_nowcheckqty.Text = dt.Rows[0]["ob_nowcheckqty"].ToString();
  390. ob_checkno.Text = dt.Rows[0]["ob_checkno"].ToString();
  391. nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  392. batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  393. if (nowcheckqty >= batchqty)
  394. {
  395. ob_nowcheckqty.ForeColor = Color.Red;
  396. OperateResult.AppendText(">>当前采集数量已达到送检数量\n", Color.Red);
  397. if (AutoCut)
  398. {
  399. OperateResult.AppendText(">>批次" + ob_checkno.Text + "自动断批\n", Color.Green);
  400. }
  401. }
  402. }
  403. else
  404. {
  405. ob_batchqty.Text = "";
  406. ob_nowcheckqty.Text = "";
  407. ob_checkno.Text = "";
  408. SendCheck.Enabled = false;
  409. }
  410. if (ob_batchqty.Text != "")
  411. {
  412. SendCheck.Enabled = true;
  413. }
  414. else
  415. {
  416. SendCheck.Enabled = false;
  417. }
  418. }
  419. private void ob_checkno_TextChanged(object sender, EventArgs e)
  420. {
  421. if (ob_checkno.Text != "")
  422. {
  423. string Cut = dh.getFieldDataByCondition("product left join oqcbatch on ob_prodcode=pr_code", "pr_ifautocutcheckno", "ob_checkno='" + ob_checkno.Text + "'").ToString();
  424. if (Cut == "" || Cut == "0")
  425. AutoCut = false;
  426. else
  427. AutoCut = true;
  428. SendCheck.Enabled = true;
  429. }
  430. }
  431. private void RefreshWeigh_Click(object sender, EventArgs e)
  432. {
  433. sql.Clear();
  434. sql.Append("select pr_cartonmaxw,pr_cartonunit,pr_cartonminw,pr_cartongw from product where pr_code='" + pr_code.Text + "'");
  435. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  436. //填充打印文件选项的DataGridView
  437. if (dt.Rows.Count > 0)
  438. {
  439. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  440. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  441. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  442. Weight = double.Parse(_weight == "" ? "0" : _weight);
  443. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  444. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  445. if (Weight - MinWeight == MaxWeight - Weight)
  446. pr_cartongw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  447. else
  448. pr_cartongw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  449. }
  450. }
  451. private void sn_KeyDown(object sender, KeyEventArgs e)
  452. {
  453. if (e.KeyCode == Keys.Enter)
  454. {
  455. SN2.Focus();
  456. SN2.SelectAll();
  457. }
  458. }
  459. private void lpn_KeyDown(object sender, KeyEventArgs e)
  460. {
  461. if (e.KeyCode == Keys.Enter)
  462. {
  463. outboxcode.Focus();
  464. outboxcode.SelectAll();
  465. }
  466. }
  467. }
  468. }