Make_BigBoxWeight.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. using LabelManager2;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.IO.Ports;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Text.RegularExpressions;
  12. using System.Threading;
  13. using System.Windows.Forms;
  14. using UAS_MES.DataOperate;
  15. using UAS_MES.Entity;
  16. using UAS_MES.PublicForm;
  17. using UAS_MES.PublicMethod;
  18. namespace UAS_MES.Make
  19. {
  20. public partial class Make_BigBoxWeight : Form
  21. {
  22. AutoSizeFormClass asc = new AutoSizeFormClass();
  23. System.DateTime[] indate;
  24. DataHelper dh;
  25. //true的时候表示从串口读取数据
  26. bool GetData = true;
  27. DataTable dt;
  28. LogStringBuilder sql = new LogStringBuilder();
  29. ApplicationClass lbl;
  30. Thread thread;
  31. Thread InitPrint;
  32. //打印计数
  33. int printcount;
  34. //创建串口实例
  35. SerialPort serialPort1 = new SerialPort();
  36. //存储当前大箱号
  37. string outboxcode = "";
  38. //记录称重串口号和波特率
  39. string Comlist = "";
  40. string Baurate = "";
  41. public Make_BigBoxWeight()
  42. {
  43. InitializeComponent();
  44. }
  45. protected override void OnVisibleChanged(EventArgs e)
  46. {
  47. base.OnVisibleChanged(e);
  48. if (!IsHandleCreated)
  49. {
  50. this.Close();
  51. }
  52. }
  53. private void Make_BigBoxWeight_Load(object sender, EventArgs e)
  54. {
  55. asc.controllInitializeSize(this);
  56. CheckForIllegalCrossThreadCalls = false;
  57. Comlist = BaseUtil.GetCacheData("PortName").ToString();
  58. Baurate = BaseUtil.GetCacheData("BaudRate").ToString();
  59. InitPrint = new Thread(InPrint);
  60. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "初始化打印程序");
  61. BaseUtil.SetFormCenter(stw);
  62. stw.ShowDialog();
  63. dh = new DataHelper();
  64. pa_outboxcode.Focus();
  65. OperateResult.AppendText(">>请输入大箱号\n");
  66. printcount = 0;
  67. weightsum.Text = printcount + "";
  68. }
  69. private void InPrint()
  70. {
  71. try
  72. {
  73. lbl = new ApplicationClass();
  74. BaseUtil.WriteLbl(lbl);
  75. }
  76. catch {
  77. OperateResult.AppendText("未正确安装CodeSoft软件\n", Color.Red);
  78. }
  79. }
  80. private void Make_BigBoxWeight_SizeChanged(object sender, EventArgs e)
  81. {
  82. asc.controlAutoSize(this);
  83. }
  84. private void pa_outboxcode_KeyDown(object sender, KeyEventArgs e)
  85. {
  86. if (e.KeyCode == Keys.Enter)
  87. {
  88. sql.Clear();
  89. sql.Append(" select pa_id,pa_prodcode,pr_spec,pr_detail,pa_makecode,pa_salecode,pa_totalqty, ");
  90. sql.Append(" pa_packageqty from package left join product on pr_code=pa_prodcode where ");
  91. sql.Append(" pa_outboxcode='" + pa_outboxcode.Text + "' and pa_type=2");
  92. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  93. outboxcode = pa_outboxcode.Text;
  94. BaseUtil.CleanForm(this);
  95. weightsum.Text = printcount + "";
  96. if (dt.Rows.Count > 0)
  97. {
  98. BaseUtil.SetFormValue(this.Controls, dt);
  99. pa_outboxcode.Text = outboxcode;
  100. }
  101. else
  102. {
  103. OperateResult.AppendText(">>箱号不存在\n", Color.Red);
  104. return;
  105. }
  106. int ActualWeight = int.Parse(weight.Text == "" ? "0" : weight.Text);
  107. if (ActualWeight > 0)
  108. {
  109. //更新大箱重量
  110. sql.Clear();
  111. sql.Append("update package set pa_weight='" + ActualWeight + "' where pa_outboxcode= '" + pa_outboxcode.Text + "'");
  112. dh.ExecuteSql(sql.GetString(), "update");
  113. OperateResult.AppendText("<<<箱号:" + pa_outboxcode.Text + ",重量:" + ActualWeight + "克\n", Color.Green);
  114. //记录makeprocess
  115. sql.Clear();
  116. sql.Append("insert into MakeProcess(mp_id,mp_makecode,mp_maid,mp_stepcode,mp_stepname ,");
  117. sql.Append("mp_kind,mp_result,mp_indate,mp_inman,mp_wccode,mp_linecode,mp_sourcecode,mp_snoutboxcode)");
  118. sql.Append("select MakeProcess_seq.nextval, ma_code,ma_id,'" + User.CurrentStepCode + "','" + User.CurrentStepName + "',");
  119. sql.Append("'" + "大箱称重" + "','" + "称重成功,大箱箱号" + pa_outboxcode.Text + ",重量:" + ActualWeight + "克" + "',sysdate,'" + User.UserName + "',ma_wccode,'" + User.UserLineCode + "','" + User.UserSourceCode + "',");
  120. sql.Append("'" + pa_outboxcode.Text + "' from make left join makeserial on ms_makecode=ma_code ");
  121. sql.Append("where ma_code='" + pa_makecode.Text + "'");
  122. dh.ExecuteSql(sql.GetString(), "insert");
  123. OperateResult.AppendText("<<<更新成功\n", Color.Green);
  124. //刷新grid的历史称重信息;
  125. recordResult(pa_outboxcode.Text, weight.Text, System.DateTime.Now.ToString());
  126. LogicHandler.DoCommandLog(Tag.ToString(),User.UserCode,pa_makecode.Text,User.UserLineCode,User.UserSourceCode,"大箱称重","称重成功","","");
  127. if (autoprint.Checked == true)
  128. {
  129. try
  130. {
  131. Print.CodeSoft(Tag.ToString(),lbl, PrintLabel.Text.Split(':')[1], PrintLabel.SelectedValue.ToString(), Printer.Text, pa_outboxcode.Text, int.Parse(PrintNum.Text), indate[PrintLabel.SelectedIndex]);
  132. dh.ExecuteSql("update package set pa_printcount= pa_printcount+1 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  133. printcount++;
  134. weightsum.Text = printcount + "";
  135. //清空输入框中的值,扫描框置空定焦
  136. pa_outboxcode.Text = "";
  137. pa_outboxcode.Focus();
  138. }
  139. catch(Exception eb)
  140. {
  141. if (PrintLabel.SelectedValue == null)
  142. {
  143. OperateResult.AppendText(">>产品:" + pa_prodcode.Text + "未维护大箱标签模板\n", Color.Red);
  144. pa_outboxcode.Text = "";
  145. pa_outboxcode.Focus();
  146. }else
  147. OperateResult.AppendText("<<<打印失败:"+eb.Message+"\n", Color.Red);
  148. }
  149. }
  150. else
  151. {
  152. OperateResult.AppendText("<<<需打印请勾选自动打印\n", Color.Red);
  153. }
  154. }
  155. else {
  156. OperateResult.AppendText("<<<大箱重量应大于0\n", Color.Red);
  157. }
  158. }
  159. }
  160. private void recordResult(string pa_outboxcode, string weight, string dateTime)
  161. {
  162. //创建一个item
  163. ListViewItem lvi = new ListViewItem();
  164. //分条赋值
  165. lvi.SubItems.Add(pa_outboxcode);
  166. lvi.SubItems.Add(weight);
  167. lvi.SubItems.Add(dateTime);
  168. //添加结果的信息进去
  169. showResult.Items.Add(lvi);
  170. }
  171. private void pa_prodcode_TextChanged(object sender, EventArgs e)
  172. {
  173. DataTable _dt = (DataTable)dh.ExecuteSql("select pl_labelcode ||':'||pl_labelname pl_name,pl_labelname,pl_labelcode,pl_labelurl,pl_indate from productlabel where pl_prodcode='" + pa_prodcode.Text + "' and PL_LABELTYPE='大箱标' order by PL_ISDEFAULT DESC", "select");
  174. PrintLabel.DataSource = _dt;
  175. PrintLabel.DisplayMember = "pl_name";
  176. PrintLabel.ValueMember = "pl_labelcode";
  177. ftpOperater ftp = new ftpOperater();
  178. indate = new System.DateTime[_dt.Rows.Count];
  179. for (int i = 0; i < _dt.Rows.Count; i++)
  180. {
  181. BaseUtil.GetPrintLabel(_dt.Rows[i]["pl_labelname"].ToString(), _dt.Rows[i]["pl_labelurl"].ToString(), _dt.Rows[i]["pl_indate"].ToString());
  182. indate[i] = Convert.ToDateTime(_dt.Rows[i]["pl_indate"].ToString());
  183. }
  184. }
  185. private void StartWeight_Click(object sender, EventArgs e)
  186. {
  187. thread = new Thread(getSerialData);
  188. try
  189. {
  190. GetData = true;
  191. serialPort1.PortName = Comlist;
  192. serialPort1.BaudRate = int.Parse(Baurate);
  193. serialPort1.Open();
  194. thread.Start();
  195. }
  196. catch (Exception mes)
  197. {
  198. if (Baurate == "" || Comlist == "")
  199. OperateResult.AppendText(">>请先在电子秤调试界面维护波特率和串口\n", Color.Red);
  200. else
  201. OperateResult.AppendText(">>" + mes.Message + "\n", Color.Red);
  202. }
  203. }
  204. private void getSerialData()
  205. {
  206. if (serialPort1.IsOpen)
  207. {
  208. if (!SystemInf.OpenPort.Contains(serialPort1.PortName))
  209. {
  210. SystemInf.OpenPort.Add(serialPort1.PortName);
  211. try
  212. {
  213. while (GetData)
  214. {
  215. try
  216. {
  217. weight.Text = Regex.Replace(serialPort1.ReadLine(), "\\D+", "");
  218. }
  219. catch (Exception)
  220. {
  221. GetData = false;
  222. }
  223. }
  224. }
  225. catch (IOException ex) { MessageBox.Show(ex.Message); }
  226. }
  227. else
  228. MessageBox.Show("端口已被占用,请关闭其他窗口");
  229. }
  230. }
  231. private void StopWeight_Click(object sender, EventArgs e)
  232. {
  233. GetData = false;
  234. SystemInf.OpenPort.Remove(serialPort1.PortName);
  235. serialPort1.Close();
  236. }
  237. private void Make_BigBoxWeight_FormClosing(object sender, FormClosingEventArgs e)
  238. {
  239. BaseUtil.ClosePrint(lbl);
  240. if (serialPort1.IsOpen)
  241. {
  242. GetData = false;
  243. serialPort1.Close();
  244. SystemInf.OpenPort.Remove(serialPort1.PortName);
  245. thread.Interrupt();
  246. }
  247. }
  248. }
  249. }