Packing_CartonBoxWeigh_ReadLine.cs 22 KB

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