Make_CartonBoxSNWeigh.cs 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  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_CartonBoxSNWeigh : Form
  19. {
  20. AutoSizeFormClass asc = new AutoSizeFormClass();
  21. DataHelper dh;
  22. DataTable dt;
  23. LogStringBuilder sql = new LogStringBuilder();
  24. ApplicationClass lbl;
  25. string outboxcode = "";
  26. Document doc;
  27. Thread thread;
  28. bool LockSn = false;
  29. ModeBusTCPServer md;
  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 Make_CartonBoxSNWeigh()
  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. IP.Text = BaseUtil.GetCacheData("IP").ToString();
  64. Port.Text = BaseUtil.GetCacheData("IPPort").ToString();
  65. InitPrint = new Thread(InPrint);
  66. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "初始化打印程序");
  67. BaseUtil.SetFormCenter(stw);
  68. stw.ShowDialog();
  69. StartWeight.PerformClick();
  70. md = new ModeBusTCPServer();
  71. dh = SystemInf.dh;
  72. ControlLockTimer.Tick += ControlLockTimer_Tick;
  73. ControlLockTimer.Interval = 100;
  74. StepCount.StepCode = User.CurrentStepCode;
  75. StepCount.Source = User.UserSourceCode;
  76. StepCount.LineCode = User.UserLineCode;
  77. StepCount.Dh = dh;
  78. StepCount.Start();
  79. }
  80. private void ControlLockTimer_Tick(object sender, EventArgs e)
  81. {
  82. this.Activate();
  83. sncode.Focus();
  84. }
  85. private void InPrint()
  86. {
  87. try
  88. {
  89. lbl = new ApplicationClass();
  90. BaseUtil.WriteLbl();
  91. }
  92. catch (Exception)
  93. {
  94. OperateResult.AppendText("未正确安装CodeSoft软件\n", Color.Red);
  95. }
  96. }
  97. private void 卡通箱称重_SizeChanged(object sender, EventArgs e)
  98. {
  99. weight.Location = new Point(weight_label.Location.X + weight_label.Size.Width - 10, weight_label.Location.Y - 20);
  100. asc.controlAutoSize(this);
  101. }
  102. private void sncode_KeyDown(object sender, KeyEventArgs e)
  103. {
  104. if (e.KeyCode == Keys.Enter)
  105. {
  106. sql.Clear();
  107. sql.Append("select max(ms_id) from makeserial where ms_sncode in (select '" + sncode.Text + "' from dual ");
  108. sql.Append("union select sn from makesnrelation where beforesn='" + sncode.Text + "' and sn<>' ' union select ");
  109. sql.Append("beforesn from makesnrelation where sn='" + sncode.Text + "' and beforesn<>' ') and ms_status in(1,2,0)");
  110. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  111. string MSID = dt.Rows[0][0].ToString();
  112. if (MSID == "")
  113. {
  114. OperateResult.AppendText(">>序列号" + sncode.Text + "不存在\n", Color.Red, sncode);
  115. return;
  116. }
  117. outboxcode = dh.getFieldDataByCondition("makeserial", "ms_outboxcode", "ms_id='" + MSID + "'").ToString();
  118. if (outboxcode == "")
  119. {
  120. OperateResult.AppendText(">>序列号" + sncode.Text + "尚未装箱\n", Color.Red, sncode);
  121. return;
  122. }
  123. sql.Clear();
  124. sql.Append("select pa_totalqty,ma_code,ma_qty,ma_salecode,PA_STANDARDQTY,PA_CURRENTQTY,pr_detail,pr_cartonunit,pr_code,pr_cartongw,");
  125. sql.Append("pr_cartonmaxw,pr_cartonminw,nvl(PR_CHECKCARTONW,'0') PR_CHECKCARTONW,nvl(pr_sendchecktype,'LineCode')pr_sendchecktype from package left join packagedetail ");
  126. 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 ");
  127. sql.Append(" where pa_outboxcode='" + outboxcode + "' and pa_nextstep='" + User.CurrentStepCode + "'");
  128. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  129. //填充打印文件选项的DataGridView
  130. if (dt.Rows.Count > 0)
  131. {
  132. BaseUtil.SetFormValue(this.Controls, dt);
  133. string ErrorMessage;
  134. //重量的临时变量
  135. PR_CHECKCARTONW = dt.Rows[0]["PR_CHECKCARTONW"].ToString();
  136. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  137. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  138. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  139. string pa_pr_cartonunit = dt.Rows[0]["pr_cartonunit"].ToString();
  140. string PA_STANDARDQTY = dt.Rows[0]["PA_STANDARDQTY"].ToString();
  141. string PA_CURRENTQTY = dt.Rows[0]["PA_CURRENTQTY"].ToString();
  142. Weight = double.Parse(_weight == "" ? "0" : _weight);
  143. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  144. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  145. pa_totalqty = int.Parse(dt.Rows[0]["pa_totalqty"].ToString());
  146. if (Weight - MinWeight == MaxWeight - Weight)
  147. pr_cartongw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  148. else
  149. pr_cartongw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  150. double ActualWeight = double.Parse(weight.Text == "" ? "0" : weight.Text.Replace("kg", "").Trim());
  151. //需要检查称重重量
  152. if (PR_CHECKCARTONW != "0" && PA_STANDARDQTY == PA_CURRENTQTY)
  153. {
  154. //称量合格或不合格都记录重量
  155. if (ActualWeight >= MinWeight && ActualWeight <= MaxWeight && ActualWeight != 0)
  156. {
  157. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量合格:" + weight.Text.Trim(), outboxcode, "");
  158. LogicHandler.RecordProdWeight(outboxcode, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  159. OperateResult.AppendText(">>箱号" + outboxcode + "检测合格\n", Color.Green);
  160. }
  161. else
  162. {
  163. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量不合格:" + weight.Text.Trim(), outboxcode, "");
  164. LogicHandler.RecordProdWeight(outboxcode, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  165. OperateResult.AppendText(">>箱号" + outboxcode + "检测未通过\n", Color.Red, sncode);
  166. return;
  167. }
  168. }
  169. else
  170. {
  171. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量完成:" + weight.Text.Trim(), outboxcode, "");
  172. LogicHandler.RecordProdWeight(outboxcode, "CARTON", float.Parse(ActualWeight.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  173. }
  174. if (AutoPrint.Checked)
  175. {
  176. if (PrintLabel.Items.Count > 0)
  177. {
  178. Confirm.PerformClick();
  179. }
  180. else
  181. {
  182. OperateResult.AppendText(">>产品" + pr_code.Text + "未维护卡通标签\n", Color.Red);
  183. }
  184. }
  185. OperateResult.AppendText(">>箱号" + outboxcode + "称重完成\n", Color.Green);
  186. if (LogicHandler.CartonBoxStepPass(ma_code.Text, User.UserSourceCode, outboxcode, User.UserCode, "卡通箱:" + outboxcode + "整箱过站", out ErrorMessage))
  187. {
  188. 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 + "'");
  189. 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 + "'").ToString() + "' ,PA_CURRENTSTEP = '' ", "pa_outboxcode='" + outboxcode + "'");
  190. }
  191. else
  192. {
  193. OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red);
  194. }
  195. LoadCheckQTY();
  196. sncode.Clear();
  197. }
  198. else OperateResult.AppendText(">>箱号" + outboxcode + "当前执行工序不是" + User.CurrentStepCode + "\n", Color.Red, sncode);
  199. }
  200. }
  201. private void getSerialData()
  202. {
  203. if (serialPort1.IsOpen)
  204. {
  205. if (!SystemInf.OpenPort.Contains(serialPort1.PortName))
  206. {
  207. SystemInf.OpenPort.Add(serialPort1.PortName);
  208. try
  209. {
  210. while (GetData)
  211. {
  212. try
  213. {
  214. weight.Text = serialPort1.ReadLine();
  215. }
  216. catch (Exception)
  217. {
  218. GetData = false;
  219. }
  220. }
  221. }
  222. catch (IOException ex) { OperateResult.AppendText(">>" + ex.Message + "\n", Color.Red, sncode); }
  223. }
  224. else OperateResult.AppendText(">>端口已被占用,请关闭其他窗口\n", Color.Red, sncode);
  225. }
  226. }
  227. //确认打印
  228. private void Confirm_Click(object sender, EventArgs e)
  229. {
  230. //doc = lbl.Documents.Open(PrintLabel.Text);
  231. string ErrorMessage = "";
  232. if (!Print.CodeSoft(Tag.ToString(), ref lbl, PrintLabel.Text, PrintLabel.SelectedValue.ToString(), PrinterList.Text, outboxcode, int.Parse(PrintNum.Text), ma_code.Text, pr_code.Text, "卡通箱标", "0", out ErrorMessage))
  233. {
  234. OperateResult.AppendText(ErrorMessage + "\n", Color.Red);
  235. }
  236. }
  237. //停止进程,关闭串口
  238. private void StopWeight_Click(object sender, EventArgs e)
  239. {
  240. if (serialPort1.IsOpen)
  241. {
  242. GetData = false;
  243. serialPort1.Close();
  244. SystemInf.OpenPort.Remove(serialPort1.PortName);
  245. thread.Abort();
  246. }
  247. }
  248. //关闭窗口的时候停止进程,不再读取串口数据
  249. private void 卡通箱称重_FormClosing(object sender, FormClosingEventArgs e)
  250. {
  251. BaseUtil.ClosePrint(lbl);
  252. StopWeight.PerformClick();
  253. InitPrint.Abort();
  254. if (serialPort1.IsOpen)
  255. {
  256. GetData = false;
  257. serialPort1.Close();
  258. SystemInf.OpenPort.Remove(serialPort1.PortName);
  259. thread.Interrupt();
  260. }
  261. //thread.Abort();
  262. }
  263. private void StartWeight_Click(object sender, EventArgs e)
  264. {
  265. thread = new Thread(getSerialData);
  266. try
  267. {
  268. GetData = true;
  269. serialPort1.PortName = this.ComList.Text;
  270. serialPort1.BaudRate = int.Parse(BaudRate.Text);
  271. serialPort1.Open();
  272. thread.Start();
  273. }
  274. catch (Exception mes)
  275. {
  276. if (BaudRate.Text == "" || ComList.Text == "")
  277. OperateResult.AppendText(">>请先在电子秤调试界面维护波特率和串口\n", Color.Red);
  278. else
  279. OperateResult.AppendText(">>" + mes.Message + "\n", Color.Red);
  280. }
  281. }
  282. private void pr_code_TextChanged(object sender, EventArgs e)
  283. {
  284. 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");
  285. PrintLabel.DataSource = dt;
  286. PrintLabel.DisplayMember = "la_url";
  287. PrintLabel.ValueMember = "la_id";
  288. }
  289. private void PrintLabel_SelectedValueChanged(object sender, EventArgs e)
  290. {
  291. if (PrintLabel.SelectedValue != null && PrintLabel.SelectedValue.ToString() != "System.Data.DataRowView")
  292. {
  293. string PrintNums = dh.getFieldDataByCondition("label", "la_printnos", "la_id='" + PrintLabel.SelectedValue.ToString() + "'").ToString();
  294. PrintNum.Text = (PrintNums == "" ? "1" : PrintNums);
  295. }
  296. }
  297. private void SendCheck_Click(object sender, EventArgs e)
  298. {
  299. 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");
  300. if (dt.Rows[0][0].ToString() != "")
  301. {
  302. OperateResult.AppendText(">>批次" + ob_checkno.Text + "存在箱号" + dt.Rows[0][0].ToString() + "未封箱,请先进行封箱\n", Color.Red);
  303. return;
  304. }
  305. sql.Clear();
  306. sql.Append("update oqcbatch set ob_status='UNCHECK' where ob_checkno ='" + ob_checkno.Text + "'");
  307. dh.ExecuteSql(sql.GetString(), "select");
  308. ob_nowcheckqty.Text = "";
  309. ob_batchqty.Text = "";
  310. ob_nowcheckqty.ForeColor = Color.Black;
  311. SendCheck.Enabled = false;
  312. OperateResult.AppendText(">>批次" + ob_checkno.Text + "送检成功\n", Color.Green);
  313. LogicHandler.InsertMakeProcess("", ma_code.Text, User.UserSourceCode, "手动送检", "手动送检成功", User.UserCode);
  314. //记录操作日志
  315. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, ma_code.Text, User.UserLineCode, User.UserSourceCode, "手动送检", "手动送检成功", "", ob_checkno.Text);
  316. ob_checkno.Text = "";
  317. }
  318. bool AutoCut;
  319. private void LoadCheckQTY()
  320. {
  321. sql.Clear();
  322. string condition = "";
  323. int nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  324. int batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  325. if (nowcheckqty + 1 == batchqty && AutoCut)
  326. {
  327. condition = "and ob_status='UNCHECK' and ob_checkno='" + ob_checkno.Text + "'";
  328. }
  329. else
  330. {
  331. condition = "and ob_status='ENTERING' ";
  332. }
  333. if (pr_sendchecktype.Text == "SaleCode")
  334. {
  335. condition += " and ob_salecode='" + ma_salecode.Text + "'";
  336. }
  337. sql.Append("select ob_batchqty,ob_nowcheckqty,ob_checkno from oqcbatch where ");
  338. sql.Append("ob_linecode='" + User.UserLineCode + "' and ob_prodcode='" + pr_code.Text + "' and ");
  339. sql.Append("ob_stepcode='" + User.CurrentStepCode + "' " + condition);
  340. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  341. if (dt.Rows.Count > 0)
  342. {
  343. ob_batchqty.Text = dt.Rows[0]["ob_batchqty"].ToString();
  344. ob_nowcheckqty.Text = dt.Rows[0]["ob_nowcheckqty"].ToString();
  345. ob_checkno.Text = dt.Rows[0]["ob_checkno"].ToString();
  346. nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  347. batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  348. if (nowcheckqty >= batchqty)
  349. {
  350. ob_nowcheckqty.ForeColor = Color.Red;
  351. OperateResult.AppendText(">>当前采集数量已达到送检数量\n", Color.Red);
  352. if (AutoCut)
  353. {
  354. OperateResult.AppendText(">>批次" + ob_checkno.Text + "自动断批\n", Color.Green);
  355. }
  356. }
  357. }
  358. else
  359. {
  360. ob_batchqty.Text = "";
  361. ob_nowcheckqty.Text = "";
  362. ob_checkno.Text = "";
  363. SendCheck.Enabled = false;
  364. }
  365. if (ob_batchqty.Text != "")
  366. {
  367. SendCheck.Enabled = true;
  368. }
  369. else
  370. {
  371. SendCheck.Enabled = false;
  372. }
  373. }
  374. private void ob_checkno_TextChanged(object sender, EventArgs e)
  375. {
  376. if (ob_checkno.Text != "")
  377. {
  378. string Cut = dh.getFieldDataByCondition("product left join oqcbatch on ob_prodcode=pr_code", "pr_ifautocutcheckno", "ob_checkno='" + ob_checkno.Text + "'").ToString();
  379. if (Cut == "" || Cut == "0")
  380. AutoCut = false;
  381. else
  382. AutoCut = true;
  383. SendCheck.Enabled = true;
  384. }
  385. }
  386. private void RefreshWeigh_Click(object sender, EventArgs e)
  387. {
  388. sql.Clear();
  389. sql.Append("select pr_cartonmaxw,pr_cartonunit,pr_cartonminw,pr_cartongw from product where pr_code='" + pr_code.Text + "'");
  390. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  391. //填充打印文件选项的DataGridView
  392. if (dt.Rows.Count > 0)
  393. {
  394. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  395. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  396. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  397. Weight = double.Parse(_weight == "" ? "0" : _weight);
  398. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  399. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  400. if (Weight - MinWeight == MaxWeight - Weight)
  401. pr_cartongw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  402. else
  403. pr_cartongw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  404. }
  405. }
  406. private void BuildServer_Click(object sender, EventArgs e)
  407. {
  408. if (!md.IsOpen)
  409. {
  410. md.IP = IP.Text;
  411. md.Port = Port.Text;
  412. if (md.Open())
  413. {
  414. BaseUtil.SetCacheData("IP", IP.Text);
  415. BaseUtil.SetCacheData("IPPort", Port.Text);
  416. OperateResult.AppendText(">>服务开启成功\n");
  417. }
  418. }
  419. else
  420. OperateResult.AppendText(">>服务已经开启\n");
  421. }
  422. private void CloseServer_Click(object sender, EventArgs e)
  423. {
  424. if (md.IsOpen)
  425. {
  426. md.Close();
  427. OperateResult.AppendText(">>服务关闭成功\n");
  428. }
  429. else
  430. OperateResult.AppendText(">>服务尚未开启\n");
  431. }
  432. private void Make_CartonBoxSNWeigh_KeyDown(object sender, KeyEventArgs e)
  433. {
  434. if (e.Modifiers == Keys.Control && e.KeyCode == Keys.Q)
  435. {
  436. if (!LockSn)
  437. {
  438. ControlLockTimer.Start();
  439. LockSn = true;
  440. Lock_label.Visible = true;
  441. }
  442. else
  443. {
  444. ControlLockTimer.Stop();
  445. LockSn = false;
  446. Lock_label.Visible = false;
  447. }
  448. }
  449. }
  450. }
  451. }