Packing_PackageCollectionWeigh.cs 63 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  1. using LabelManager2;
  2. using System;
  3. using System.Data;
  4. using System.Text;
  5. using System.Windows.Forms;
  6. using UAS_MES_NEW.DataOperate;
  7. using UAS_MES_NEW.Entity;
  8. using UAS_MES_NEW.PublicMethod;
  9. using System.Drawing;
  10. using System.Threading;
  11. using UAS_MES_NEW.PublicForm;
  12. using System.IO.Ports;
  13. using System.IO;
  14. using System.Text.RegularExpressions;
  15. using System.Collections.Generic;
  16. using Seagull.BarTender.Print;
  17. using static System.Windows.Forms.VisualStyles.VisualStyleElement;
  18. namespace UAS_MES_NEW.Packing
  19. {
  20. public partial class Packing_PackageCollectionWeigh : Form
  21. {
  22. DataHelper dh;
  23. DataTable dt;
  24. LogStringBuilder sql = new LogStringBuilder();
  25. AutoSizeFormClass asc = new AutoSizeFormClass();
  26. Document doc;
  27. Engine engine;
  28. Thread thread;
  29. DataTable Dbfind;
  30. string ErrorMessage = "";
  31. string oMakeCode = "";
  32. string oMsID = "";
  33. string oMsStatus = "";
  34. string PR_CHECKCARTONW = "0";
  35. //称量的标准重量
  36. double Weight;
  37. //最大重量
  38. double MaxWeight;
  39. //最小重量
  40. double MinWeight;
  41. string ActWeigh = "0";
  42. Regex re = new Regex("\\d+.\\d+[\\s\\S]+");
  43. decimal StandardQTY = 0;
  44. string oOutBoxCode = "";
  45. string LastSncode;
  46. //创建串口实例
  47. SerialPort serialPort1 = new SerialPort();
  48. //true的时候表示从串口读取数据
  49. bool GetData = true;
  50. public Packing_PackageCollectionWeigh()
  51. {
  52. InitializeComponent();
  53. }
  54. //创建打印进程
  55. private void NewPrint()
  56. {
  57. try
  58. {
  59. engine = new Engine(true);
  60. BaseUtil.WriteLbl();
  61. }
  62. catch (Exception ex)
  63. {
  64. OperateResult.AppendText("未正确安装BarTender软件\n", Color.Red);
  65. }
  66. }
  67. private void Make_PackageCollectionWeigh_Load(object sender, EventArgs e)
  68. {
  69. ComList.Text = BaseUtil.GetCacheData("PortName").ToString();
  70. Baurate.Text = BaseUtil.GetCacheData("BaudRate").ToString();
  71. //设置DbFind的必须的数据
  72. PrintNum.Text = "1";
  73. asc.controllInitializeSize(this);
  74. thread = new Thread(NewPrint);
  75. SetLoadingWindow stw = new SetLoadingWindow(thread, "初始化打印程序");
  76. BaseUtil.SetFormCenter(stw);
  77. stw.ShowDialog();
  78. try
  79. {
  80. OutBoxLength.Text = BaseUtil.GetCacheData("OutBoxLength").ToString();
  81. PreFix.Text = BaseUtil.GetCacheData("PreFix").ToString();
  82. Remark_PreFix.Text = BaseUtil.GetCacheData("Remark_PreFix").ToString();
  83. }
  84. catch (Exception) { }
  85. thread = new Thread(getSerialData);
  86. try
  87. {
  88. GetData = true;
  89. serialPort1.PortName = ComList.Text;
  90. serialPort1.BaudRate = int.Parse(Baurate.Text);
  91. serialPort1.Open();
  92. thread.Start();
  93. }
  94. catch (Exception mes)
  95. {
  96. if (Baurate.Text == "" || ComList.Text == "")
  97. OperateResult.AppendText(">>请先在电子秤调试界面维护波特率和串口\n", Color.Red);
  98. else
  99. OperateResult.AppendText(">>" + mes.Message + "\n", Color.Red);
  100. }
  101. sn_code.Focus();
  102. dh = SystemInf.dh;
  103. StepCount.StepCode = User.CurrentStepCode;
  104. StepCount.Source = User.UserSourceCode;
  105. StepCount.LineCode = User.UserLineCode;
  106. StepCount.Dh = dh;
  107. StepCount.Start();
  108. }
  109. private void getSerialData()
  110. {
  111. if (serialPort1.IsOpen)
  112. {
  113. if (!SystemInf.OpenPort.Contains(serialPort1.PortName))
  114. {
  115. SystemInf.OpenPort.Add(serialPort1.PortName);
  116. try
  117. {
  118. while (GetData)
  119. {
  120. try
  121. {
  122. weight.Text = re.Match(serialPort1.ReadLine().Trim()).Groups[0].Value;
  123. pa_remark.AppendText(weight.Text+"\n");
  124. //int len = serialPort1.BytesToRead;
  125. //Byte[] readBuffer = new Byte[len];
  126. //serialPort1.Read(readBuffer, 0, len); //将数据读入缓存
  127. //string weigh = Encoding.Default.GetString(readBuffer);
  128. //if (weigh != "")
  129. //{
  130. // weight.Text = re.Matches(weigh)[0].Value;
  131. //}
  132. }
  133. catch (Exception)
  134. {
  135. GetData = false;
  136. }
  137. }
  138. }
  139. catch (IOException ex) { MessageBox.Show(ex.Message); }
  140. }
  141. else
  142. MessageBox.Show("端口已被占用,请关闭其他窗口");
  143. }
  144. }
  145. private void Make_PackageCollectionWeigh_SizeChanged(object sender, EventArgs e)
  146. {
  147. asc.controlAutoSize(this);
  148. }
  149. private void Make_PackageCollectionWeigh_Activated(object sender, EventArgs e)
  150. {
  151. pa_outboxcode.Focus();
  152. }
  153. //刷新表单的数据的数据
  154. private void LoadData()
  155. {
  156. //加载表单数据
  157. string Err = "";
  158. sql.Clear();
  159. sql.Append("select pa_prodcode,pr_cartonmaxw,pa_salecode,pa_remark,pa_makecode,pr_cartonunit,pr_code,pr_cartonminw,pr_cartongw,pa_outboxcode,pa_sccode,nvl(pa_downstatus,0) pa_downstatus,pa_checkno,");
  160. sql.Append("pa_status,pr_packrule,pr_detail,nvl(pr_sendchecktype,'LineCode')pr_sendchecktype,pa_packageqty,nvl(pa_standardqty,0)pa_standardqty,nvl(pr_outboxinnerqty,0)pr_outboxinnerqty,nvl(PR_CHECKCARTONW,'0') PR_CHECKCARTONW,pa_currentqty from package left join ");
  161. sql.Append("product on pa_prodcode=pr_code where pa_outboxcode='" + pa_outboxcode.Text + "'");
  162. Err = "箱号";
  163. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  164. if (dt.Rows.Count > 0)
  165. {
  166. //重量的临时变量
  167. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  168. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  169. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  170. PR_CHECKCARTONW = dt.Rows[0]["PR_CHECKCARTONW"].ToString();
  171. if (dt.Rows[0]["pa_salecode"].ToString() != "")
  172. {
  173. ms_salecode.Text = dt.Rows[0]["pa_salecode"].ToString();
  174. }
  175. if (PR_CHECKCARTONW != "0")
  176. checkweightlabel.Text = "需要检测重量";
  177. else
  178. checkweightlabel.Text = "不需检测重量";
  179. //赋值重量单位
  180. Weight = double.Parse(_weight == "" ? "0" : _weight);
  181. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  182. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  183. //记录该数据保证在修改不被允许的前提下能偶回复之前的值
  184. StandardQTY = decimal.Parse(dt.Rows[0]["pr_outboxinnerqty"].ToString());
  185. BaseUtil.SetFormValue(this.Controls, dt);
  186. if (pa_standardqty.Text != "0")
  187. pr_outboxinnerqty.Text = pa_standardqty.Text;
  188. if (Weight - MinWeight == MaxWeight - Weight)
  189. pr_cartonboxgw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  190. else
  191. pr_cartonboxgw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  192. }
  193. LoadCheckQTY();
  194. LoadCollectedNum();
  195. }
  196. private void LoadGridData()
  197. {
  198. //加载Grid数据
  199. dt = (DataTable)dh.ExecuteSql("select pa_outboxcode,pa_prodcode,pd_barcode,pd_innerqty,pa_indate from packageDetail left join package on pa_id=pd_paid where pa_outboxcode='" + pa_outboxcode.Text + "'", "select");
  200. BaseUtil.FillDgvWithDataTable(PackageDetail, dt);
  201. //更新界面的采集数量
  202. pa_currentqty.Text = dh.getFieldDataByCondition("package", "pa_currentqty", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString();
  203. }
  204. private void Print_Click(object sender, EventArgs e)
  205. {
  206. if (PrintLabel.Items.Count != 0)
  207. {
  208. if (dh.getFieldDataByCondition("package", "pa_status", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString() == "1")
  209. {
  210. dh.ExecuteSql("update package set pa_printcount=pa_printcount+1 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  211. //doc = lbl.Documents.Open(PrintLabel.Text);
  212. if (Print.BarTender(Tag.ToString(), ref engine, PrintLabel.Text, PrintLabel.SelectedValue.ToString(), PrintList.Text, pa_outboxcode.Text, int.Parse(PrintNum.Text), oMakeCode == "" ? pa_makecode.Text : oMakeCode, pr_code.Text, "卡通箱标", "0", out ErrorMessage))
  213. {
  214. OperateResult.AppendText(">>开始打印箱号" + pa_outboxcode.Text + "\n", Color.Black);
  215. }
  216. else
  217. {
  218. OperateResult.AppendText(ErrorMessage + "\n", Color.Red);
  219. }
  220. if (!AutoGenBoxCode.Checked)
  221. {
  222. pa_outboxcode.Focus();
  223. pa_outboxcode.SelectAll();
  224. }
  225. else
  226. {
  227. sn_code.Focus();
  228. sn_code.SelectAll();
  229. }
  230. }
  231. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "尚未封箱,请封箱后执行打印\n", Color.Red);
  232. }
  233. else OperateResult.AppendText(">>产品" + pr_code.Text + "未维护打印标签\n", Color.Red);
  234. }
  235. //加载工单信息和装箱明细信息
  236. private void pa_code_KeyDown(object sender, KeyEventArgs e)
  237. {
  238. if (e.KeyCode == Keys.Enter)
  239. {
  240. if (CheckOutBoxLength())
  241. {
  242. LoadData();
  243. LoadGridData();
  244. sn_code.Focus();
  245. }
  246. }
  247. }
  248. //输入序列号的回车事件
  249. private void barcode_KeyDown(object sender, KeyEventArgs e)
  250. {
  251. //当用户输入回车键的时候
  252. if (e.KeyCode == Keys.Enter)
  253. {
  254. if (LogicHandler.CheckStepAttribute(Tag.ToString(), User.UserSourceCode, out ErrorMessage))
  255. {
  256. dt = (DataTable)dh.ExecuteSql("select ms_sncode from makeserial where ms_imei1='" + sn_code.Text + "' order by ms_id desc", "select");
  257. if (dt.Rows.Count > 0)
  258. {
  259. sn_code.Text = dt.Rows[0]["ms_sncode"].ToString();
  260. }
  261. else
  262. {
  263. dt = (DataTable)dh.ExecuteSql("select ms_sncode from makeserial where ms_imei2='" + sn_code.Text + "' order by ms_id desc", "select");
  264. if (dt.Rows.Count > 0)
  265. {
  266. sn_code.Text = dt.Rows[0]["ms_sncode"].ToString();
  267. }
  268. }
  269. dt = (DataTable)dh.ExecuteSql("select ms_status,ms_id,ms_makecode,ms_craftcode,ms_prodcode from makeserial where ms_sncode ='" + sn_code.Text + "' order by ms_id desc", "select");
  270. if (LogicHandler.CheckStepSNAndMacode("", User.UserSourceCode, sn_code.Text, User.UserCode, out oMakeCode, out oMsID, out ErrorMessage) || (dt.Rows.Count > 0 && dt.Rows[0]["ms_status"].ToString() == "2"))
  271. {
  272. if (oMsID == "" || oMsID == "null" || oMsID == "0")
  273. {
  274. oMsID = dt.Rows[0]["ms_id"].ToString();
  275. oMsStatus = dt.Rows[0]["ms_status"].ToString();
  276. oMakeCode = dt.Rows[0]["ms_makecode"].ToString();
  277. }
  278. if (oMsStatus == "2")
  279. {
  280. string prodcode = dt.Rows[0]["ms_prodcode"].ToString();
  281. string craftcode = dt.Rows[0]["ms_craftcode"].ToString();
  282. string craftstepcode = dh.getFieldDataByCondition("craft left join craftdetail on cr_id =cd_crid", "cd_stepcode", "cr_prodcode='" + prodcode + "' and cr_code='" + craftcode + "' and cd_stepcode='" + User.CurrentStepCode + "'").ToString();
  283. if (craftstepcode == "")
  284. {
  285. OperateResult.AppendText("工序" + User.CurrentStepCode + "不在途程" + craftcode + "内,不允许采集\n", Color.Red);
  286. return;
  287. }
  288. }
  289. string nextstepcode = dh.getFieldDataByCondition("makeserial", "ms_nextstepcode", "ms_id='" + oMsID + "'").ToString();
  290. if (nextstepcode != "" && nextstepcode != User.CurrentStepCode)
  291. {
  292. OperateResult.AppendText("当前序列号下一道工序为" + nextstepcode + ",当前资源不允许采集\n", Color.Red);
  293. return;
  294. }
  295. //PR_CHECKCARTONW = dh.getFieldDataByCondition("craftdetail left join craft on cr_id=cd_crid left join makeserial on ms_craftcode =cr_code", "nvl(cd_ifweigh,'0') cd_ifweigh", "ms_sncode='" + sn_code.Text + "' and ms_makecode='" + oMakeCode + "' and cd_stepcode = '" + User.CurrentStepCode + "'").ToString();
  296. sql.Clear();
  297. sql.Append("select nvl(ms_iostatus,0) ms_iostatus,ms_outno,ms_salecode,ms_makecode,ms_prodcode,nvl(pa_downstatus,0) pa_downstatus,pa_sccode,pa_checkno,pr_packrule,");
  298. sql.Append("nvl(pr_outboxinnerqty,0)pr_outboxinnerqty,nvl(pr_sendchecktype,'LineCode')pr_sendchecktype from makeserial left join product on ms_prodcode=pr_code left join packagedetail ");
  299. sql.Append("on pd_barcode=ms_sncode left join package on pa_id =pd_paid where ms_id='" + oMsID + "'");
  300. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  301. string ms_makecode = "";
  302. string ms_prodcode = "";
  303. string ms_iostatus = "";
  304. string ms_outno = "";
  305. string ms_salecode_text = "";
  306. if (dt.Rows.Count > 0)
  307. {
  308. StandardQTY = decimal.Parse(dt.Rows[0]["pr_outboxinnerqty"].ToString());
  309. ms_makecode = dt.Rows[0]["ms_makecode"].ToString();
  310. ms_prodcode = dt.Rows[0]["ms_prodcode"].ToString();
  311. ms_iostatus = dt.Rows[0]["ms_iostatus"].ToString();
  312. ms_outno = dt.Rows[0]["ms_outno"].ToString();
  313. ms_salecode_text = dt.Rows[0]["ms_salecode"].ToString();
  314. if (locksalecode.Checked && ms_salecode.Text != "" && ms_salecode.Text != ms_salecode_text)
  315. {
  316. OperateResult.AppendText(">>序列号" + sn_code.Text + "所属订单号" + ms_salecode_text + "与界面订单号" + ms_salecode.Text + "不同,无法采集\n", Color.Red, sn_code);
  317. return;
  318. }
  319. BaseUtil.SetFormValue(this.Controls, dt);
  320. }
  321. if (dt.Rows[0]["ms_outno"].ToString() != "")
  322. {
  323. OperateResult.AppendText(">>序列号" + sn_code.Text + "已被出货单" + dt.Rows[0]["ms_outno"].ToString() + "采集,不允许操作\n", Color.Red, sn_code);
  324. return;
  325. }
  326. if (dt.Rows[0]["ms_iostatus"].ToString() != "0")
  327. {
  328. OperateResult.AppendText(">>序列号" + sn_code.Text + "已入库不允许采集\n", Color.Red, sn_code);
  329. return;
  330. }
  331. if (pa_standardqty.Text != "0" && pa_standardqty.Text != "")
  332. {
  333. pr_outboxinnerqty.Text = pa_standardqty.Text;
  334. }
  335. if (pa_outboxcode.Text == "")
  336. {
  337. string boxcode = dh.getFieldDataByCondition("makeserial", "ms_outboxcode", "ms_id='" + oMsID + "'").ToString();
  338. if (boxcode != "")
  339. {
  340. pa_outboxcode.Text = boxcode;
  341. LoadGridData();
  342. }
  343. else
  344. {
  345. if (AutoGenBoxCode.Checked && (pa_status.Text == "1" || pa_status.Text == ""))
  346. {
  347. pa_outboxcode.Text = LogicHandler.GetOutBoxCode("PACKAGE", ms_makecode, pr_code.Text, User.UserCode);
  348. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, oMakeCode, User.UserLineCode, User.UserSourceCode, "卡通箱采集", "卡通箱" + pa_outboxcode.Text + "自动生成", sn_code.Text, PreFix.Text + ":" + OutBoxLength.Text);
  349. }
  350. }
  351. }
  352. if (pa_outboxcode.Text == "")
  353. {
  354. OperateResult.AppendText(">>箱号不能为空\n", Color.Red, sn_code);
  355. return;
  356. }
  357. //判断箱内总数必须大于0
  358. if (pr_outboxinnerqty.Text == "" || pr_outboxinnerqty.Text == "0")
  359. {
  360. OperateResult.AppendText(">>箱内容量必须大于0\n", Color.Red);
  361. return;
  362. }
  363. sql.Clear();
  364. sql.Append("select nvl(pa_iostatus,0) pa_iostatus,pa_outno,pa_mothercode from package where pa_outboxcode='" + pa_outboxcode.Text + "'");
  365. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  366. string MotherBoxCode = "";
  367. if (dt.Rows.Count > 0)
  368. {
  369. if (dt.Rows[0]["pa_mothercode"].ToString() != "")
  370. {
  371. MotherBoxCode = dt.Rows[0]["pa_mothercode"].ToString();
  372. }
  373. if (dt.Rows[0]["pa_outno"].ToString() != "")
  374. {
  375. OperateResult.AppendText(">>卡通箱" + pa_outboxcode.Text + "已被出货单" + dt.Rows[0]["pa_outno"].ToString() + "采集,不允许操作\n", Color.Red, sn_code);
  376. return;
  377. }
  378. if (dt.Rows[0]["pa_iostatus"].ToString() != "0")
  379. {
  380. OperateResult.AppendText(">>卡通箱" + pa_outboxcode.Text + "处于入库状态,不允许操作\n", Color.Red, sn_code);
  381. return;
  382. }
  383. }
  384. //如果未勾选了取消录入
  385. if (!Cancel.Checked)
  386. {
  387. string ms_outboxcode = dh.getFieldDataByCondition("makeserial", "ms_outboxcode", "ms_id='" + oMsID + "'").ToString();
  388. if (ms_outboxcode != "")
  389. {
  390. if (ms_outboxcode == pa_outboxcode.Text)
  391. OperateResult.AppendText(">>序列号" + sn_code.Text + "已在本箱内\n", Color.Red, sn_code);
  392. else
  393. OperateResult.AppendText(">>序列号" + sn_code.Text + "已采集至箱" + ms_outboxcode + "\n", Color.Red, sn_code);
  394. LoadData();
  395. }
  396. else
  397. {
  398. //满箱之后采集下一个之前自动清除内容,生成新的箱号
  399. if ((AutoGenBoxCode.Checked && pa_currentqty.Text != "" && pr_outboxinnerqty.Text == pa_currentqty.Text) || (AutoGenBoxCode.Checked && pa_status.Text == "1"))
  400. {
  401. pa_currentqty.Text = "";
  402. pa_outboxcode.Text = "";
  403. pa_status.Text = "0";
  404. BaseUtil.CleanDGVData(PackageDetail);
  405. pa_outboxcode.Text = LogicHandler.GetOutBoxCode("PACKAGE", ms_makecode, pr_code.Text, User.UserCode);
  406. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, oMakeCode, User.UserLineCode, User.UserSourceCode, "卡通箱采集", "卡通箱" + pa_outboxcode.Text + "自动生成", sn_code.Text, PreFix.Text + ":" + OutBoxLength.Text);
  407. }
  408. if (!CheckOutBoxLength(ms_salecode_text))
  409. {
  410. return;
  411. }
  412. ////箱号不存在的情况
  413. if (LogicHandler.Packing(sn_code.Text, pa_outboxcode.Text, AutoGenBoxCode.Checked, "标准", User.UserSourceCode, User.UserCode, pr_outboxinnerqty.Text, Cancel.Checked, out oOutBoxCode, out ErrorMessage))
  414. {
  415. //提示正确返回时传递的信息
  416. if (ErrorMessage.Contains("AFTERSUCCESS"))
  417. OperateResult.AppendText(">>" + ErrorMessage + "\n");
  418. LoadCheckQTY();
  419. LoadCollectedNum();
  420. OperateResult.AppendText(">>序列号" + sn_code.Text + "采集成功!\n", Color.Green);
  421. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, oMakeCode, User.UserLineCode, User.UserSourceCode, "卡通箱采集", "卡通箱" + pa_outboxcode.Text + "采集成功", sn_code.Text, "");
  422. LastSncode = sn_code.Text;
  423. //满箱更新状态为1
  424. LoadData();
  425. dh.ExecuteSql("update packagedetail set pd_innerqty=(select pa_packageqty from package where pa_outboxcode='" + pa_outboxcode.Text + "') where pd_innerboxcode='" + pa_outboxcode.Text + "'", "update");
  426. //如果母箱号不为空,需要更新总数
  427. if (MotherBoxCode != "")
  428. {
  429. DataTable dt = (DataTable)dh.ExecuteSql("select pa_mothercode,pa_type from package where pa_outboxcode='" + MotherBoxCode + "'", "select");
  430. if (dt.Rows.Count > 0)
  431. {
  432. if (dt.Rows[0]["pa_type"].ToString() == "2")
  433. {
  434. string MotherCode2 = dt.Rows[0]["pa_mothercode"].ToString();
  435. //更新大箱数量
  436. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherBoxCode + "') where pa_outboxcode='" + MotherBoxCode + "'", "update");
  437. //外层有栈板则更新栈板数量
  438. if (MotherCode2 != "")
  439. {
  440. dh.ExecuteSql("update packagedetail set pd_innerqty=(select sum(pd_innerqty) from packagedetail where pd_outboxcode='" + MotherBoxCode + "') where pd_innerboxcode='" + MotherBoxCode + "'", "update");
  441. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherCode2 + "') where pa_outboxcode='" + MotherCode2 + "'", "update");
  442. }
  443. }
  444. if (dt.Rows[0]["pa_type"].ToString() == "3")
  445. {
  446. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherBoxCode + "') where pa_outboxcode='" + MotherBoxCode + "'", "update");
  447. }
  448. }
  449. }
  450. //采集完后如果是第一个装的序列号,把序列号的NextStepCode赋值给箱号
  451. if (pa_currentqty.Text == "1")
  452. {
  453. dh.UpdateByCondition("package", "pa_nextstep='" + User.CurrentStepCode + "', PA_CURRENTSTEP = '" + User.CurrentStepCode + "'", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  454. }
  455. LoadGridData();
  456. sn_code.Clear();
  457. if (int.Parse(pa_currentqty.Text == "" ? "0" : pa_currentqty.Text) == int.Parse(pr_outboxinnerqty.Text))
  458. {
  459. ActWeigh = weight.Text == "" ? "0" : weight.Text.Replace("kg", "").Replace("g", "").Trim();
  460. float weigh = float.Parse(ActWeigh);
  461. if (PR_CHECKCARTONW != "0")
  462. {
  463. if (MinWeight == 0 || MaxWeight == 0)
  464. {
  465. OperateResult.AppendText(">>产品" + pr_code.Text + "未维护卡通箱重量范围\n", Color.Red);
  466. return;
  467. }
  468. if (!(weigh >= MinWeight && weigh <= MaxWeight) || weigh == 0)
  469. {
  470. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "重量不符合标准重量\n", Color.Red);
  471. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量不符合要求:" + weight.Text.Trim(), pa_outboxcode.Text, "");
  472. LogicHandler.RecordProdWeight(pa_outboxcode.Text, "CARTON", float.Parse(ActWeigh.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  473. return;
  474. }
  475. }
  476. dh.UpdateByCondition("package", "pa_status=1,pa_totalqty=pa_currentqty,pa_packageqty=pa_currentqty,pa_weight=" + weigh + "", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  477. pa_standardqty.Text = "";
  478. pa_status.Text = "1";
  479. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "满箱封箱成功\n", Color.Green);
  480. LogicHandler.RecordProdWeight(pa_outboxcode.Text, "CARTON", float.Parse(ActWeigh.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  481. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量完成:" + weight.Text.Trim(), pa_outboxcode.Text, "");
  482. if (LogicHandler.OutBoxStepPass(pa_outboxcode.Text, ms_makecode, User.UserSourceCode, User.UserCode, "卡通箱:" + pa_outboxcode.Text + "整箱过站", "卡通箱整箱过站", out ErrorMessage))
  483. {
  484. 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='" + pa_outboxcode.Text + "'").ToString() + "', PA_CURRENTSTEP = '' ", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  485. }
  486. else
  487. {
  488. OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red);
  489. }
  490. LoadCheckQTY();
  491. LoadCollectedNum();
  492. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "称量完成\n", Color.Green);
  493. if (AutoPrint.Checked)
  494. Print_Click(new object(), new EventArgs());
  495. if (!CollecRemark.Checked)
  496. {
  497. if (!AutoGenBoxCode.Checked)
  498. {
  499. pa_outboxcode.Focus();
  500. pa_outboxcode.SelectAll();
  501. }
  502. else
  503. {
  504. sn_code.Focus();
  505. sn_code.SelectAll();
  506. }
  507. }
  508. else
  509. {
  510. pa_remark.SelectAll();
  511. pa_remark.Focus();
  512. }
  513. }
  514. }
  515. else OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red);
  516. }
  517. }
  518. //勾选了取消箱号先验证箱号存不存在,存在的话移除掉,重新加载一次数据
  519. else
  520. {
  521. if (LogicHandler.Packing(sn_code.Text, pa_outboxcode.Text, AutoGenBoxCode.Checked, "标准", User.UserSourceCode, User.UserCode, pr_outboxinnerqty.Text, Cancel.Checked, out oOutBoxCode, out ErrorMessage))
  522. {
  523. dh.UpdateByCondition("makeserial", "ms_outboxcode=''", "ms_id='" + oMsID + "'");
  524. dh.ExecuteSql("update packagedetail set pd_innerqty=(select pa_packageqty from package where pa_outboxcode='" + pa_outboxcode.Text + "') where pd_innerboxcode='" + pa_outboxcode.Text + "'", "update");
  525. //如果母箱号不为空,需要更新总数
  526. if (MotherBoxCode != "")
  527. {
  528. DataTable dt = (DataTable)dh.ExecuteSql("select pa_mothercode,pa_type from package where pa_outboxcode='" + MotherBoxCode + "'", "select");
  529. if (dt.Rows.Count > 0)
  530. {
  531. if (dt.Rows[0]["pa_type"].ToString() == "2")
  532. {
  533. string MotherCode2 = dt.Rows[0]["pa_mothercode"].ToString();
  534. //更新大箱数量
  535. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherBoxCode + "') where pa_outboxcode='" + MotherBoxCode + "'", "update");
  536. //外层有栈板则更新栈板数量
  537. if (MotherCode2 != "")
  538. {
  539. dh.ExecuteSql("update packagedetail set pd_innerqty=(select sum(pd_innerqty) from packagedetail where pd_outboxcode='" + MotherBoxCode + "') where pd_innerboxcode='" + MotherBoxCode + "'", "update");
  540. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherCode2 + "') where pa_outboxcode='" + MotherCode2 + "'", "update");
  541. }
  542. }
  543. if (dt.Rows[0]["pa_type"].ToString() == "3")
  544. {
  545. dh.ExecuteSql("update package set PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + MotherBoxCode + "') where pa_outboxcode='" + MotherBoxCode + "'", "update");
  546. }
  547. }
  548. }
  549. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, oMakeCode, User.UserLineCode, User.UserSourceCode, "卡通箱采集", "卡通箱" + pa_outboxcode.Text + "取消采集成功", sn_code.Text, "");
  550. LoadGridData();
  551. pa_status.Text = "0";
  552. OperateResult.AppendText(">>已从该箱中移除序列号" + sn_code.Text + "\n", Color.Green, sn_code);
  553. }
  554. else OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red, sn_code);
  555. }
  556. }
  557. else OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red, sn_code);
  558. }
  559. else OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red, sn_code);
  560. }
  561. }
  562. private void Clean_Click(object sender, EventArgs e)
  563. {
  564. OperateResult.Clear();
  565. }
  566. private void pr_code_TextChanged(object sender, EventArgs e)
  567. {
  568. LoadCheckQTY();
  569. 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");
  570. if (_dt.Rows.Count == 0)
  571. {
  572. _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");
  573. }
  574. if (_dt.Rows.Count > 0)
  575. {
  576. string la_id = _dt.Rows[0]["la_id"].ToString();
  577. _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");
  578. PrintLabel.DataSource = _dt;
  579. PrintLabel.DisplayMember = "la_url";
  580. PrintLabel.ValueMember = "la_id";
  581. }
  582. }
  583. private void Make_PackageCollectionWeigh_FormClosing(object sender, FormClosingEventArgs e)
  584. {
  585. if (serialPort1.IsOpen)
  586. {
  587. GetData = false;
  588. serialPort1.Close();
  589. SystemInf.OpenPort.Remove(serialPort1.PortName);
  590. thread.Interrupt();
  591. }
  592. //thread.Abort();
  593. }
  594. private void Packing_Click(object sender, EventArgs e)
  595. {
  596. if (dh.CheckExist("package", "pa_outboxcode='" + pa_outboxcode.Text + "' and nvl(pa_status,0)=0"))
  597. {
  598. string Seal = MessageBox.Show(this.ParentForm, "是否确认封箱?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
  599. if (Seal == "Yes")
  600. {
  601. ActWeigh = weight.Text == "" ? "0" : weight.Text.Replace("kg", "").Replace("g", "").Trim();
  602. float weigh = float.Parse(ActWeigh);
  603. if (PR_CHECKCARTONW != "0" && pa_standardqty.Text == pa_currentqty.Text)
  604. {
  605. if (!(weigh >= MinWeight && weigh <= MaxWeight) || weigh == 0)
  606. {
  607. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "重量不符合标准重量,不能完成工序过站\n", Color.Red);
  608. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量不符合要求:" + weight.Text.Trim(), pa_outboxcode.Text, "");
  609. LogicHandler.RecordProdWeight(pa_outboxcode.Text, "CARTON", float.Parse(ActWeigh.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  610. return;
  611. }
  612. }
  613. dh.UpdateByCondition("package", "pa_status=1,pa_totalqty=pa_currentqty,pa_packageqty=pa_currentqty,pa_weight=" + weigh + "", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  614. pa_status.Text = "1";
  615. pa_standardqty.Text = "";
  616. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱采集", "封箱成功", pa_outboxcode.Text, "");
  617. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "封箱成功\n", Color.Green);
  618. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱称重", "称量完成:" + weight.Text.Trim(), pa_outboxcode.Text, "");
  619. LogicHandler.RecordProdWeight(pa_outboxcode.Text, "CARTON", float.Parse(ActWeigh.ToString()), "kg", User.UserLineCode, pr_code.Text, User.UserSourceCode, User.UserName);
  620. string ms_makecode = dh.getFieldDataByCondition("packagedetail", "pd_makecode", "pd_outboxcode = '" + pa_outboxcode.Text + "'").ToString();
  621. if (LogicHandler.OutBoxStepPass(pa_outboxcode.Text, ms_makecode, User.UserSourceCode, User.UserCode, "卡通箱:" + pa_outboxcode.Text + "整箱过站", "卡通箱整箱过站", out ErrorMessage))
  622. {
  623. 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='" + pa_outboxcode.Text + "'").ToString() + "', PA_CURRENTSTEP = '' ", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  624. }
  625. else
  626. {
  627. OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red);
  628. }
  629. LoadCheckQTY();
  630. if (!CollecRemark.Checked)
  631. {
  632. if (!AutoGenBoxCode.Checked)
  633. {
  634. pa_outboxcode.Focus();
  635. pa_outboxcode.SelectAll();
  636. }
  637. else
  638. {
  639. sn_code.Focus();
  640. sn_code.SelectAll();
  641. }
  642. }
  643. else
  644. {
  645. pa_remark.SelectAll();
  646. pa_remark.Focus();
  647. }
  648. }
  649. }
  650. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "错误或者已封箱\n", Color.Red);
  651. }
  652. private void SendCheck_Click(object sender, EventArgs e)
  653. {
  654. if (dh.getFieldDataByCondition("package", "pa_status", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString() == "1")
  655. {
  656. 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");
  657. if (dt.Rows[0][0].ToString() != "")
  658. {
  659. OperateResult.AppendText(">>批次" + ob_checkno.Text + "存在箱号" + dt.Rows[0][0].ToString() + "未封箱,请先进行封箱\n", Color.Red);
  660. return;
  661. }
  662. sql.Clear();
  663. sql.Append("update oqcbatch set ob_status='UNCHECK',ob_breakingdate=sysdate where ob_checkno ='" + ob_checkno.Text + "'");
  664. dh.ExecuteSql(sql.GetString(), "select");
  665. ob_nowcheckqty.Text = "";
  666. ob_batchqty.Text = "";
  667. ob_nowcheckqty.ForeColor = Color.Black;
  668. SendCheck.Enabled = false;
  669. OperateResult.AppendText(">>批次" + ob_checkno.Text + "送检成功\n", Color.Green);
  670. LogicHandler.InsertMakeProcess(LastSncode, oMakeCode, User.UserSourceCode, "手动送检", "手动送检成功", User.UserCode);
  671. //记录操作日志
  672. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "手动送检", "手动送检成功", "", ob_checkno.Text);
  673. ob_checkno.Text = "";
  674. }
  675. else OperateResult.AppendText(">>必须封箱才能送检\n", Color.Red);
  676. }
  677. bool AutoCut;
  678. private void LoadCheckQTY()
  679. {
  680. sql.Clear();
  681. string condition = "";
  682. int nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  683. int batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  684. if (nowcheckqty + 1 == batchqty && AutoCut)
  685. {
  686. condition = "and ob_status='UNCHECK' and ob_checkno='" + ob_checkno.Text + "'";
  687. }
  688. else
  689. {
  690. condition = "and ob_status='ENTERING' ";
  691. }
  692. if (pr_sendchecktype.Text == "SaleCode")
  693. {
  694. condition += " and ob_salecode='" + ms_salecode.Text + "'";
  695. }
  696. sql.Append("select ob_batchqty,ob_nowcheckqty,ob_checkno from oqcbatch where ");
  697. sql.Append("ob_linecode='" + User.UserLineCode + "' and ob_prodcode='" + pr_code.Text + "' and ");
  698. sql.Append("ob_stepcode='" + User.CurrentStepCode + "' " + condition);
  699. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  700. if (dt.Rows.Count > 0)
  701. {
  702. ob_batchqty.Text = dt.Rows[0]["ob_batchqty"].ToString();
  703. ob_nowcheckqty.Text = dt.Rows[0]["ob_nowcheckqty"].ToString();
  704. ob_checkno.Text = dt.Rows[0]["ob_checkno"].ToString();
  705. nowcheckqty = int.Parse(ob_nowcheckqty.Text == "" ? "0" : ob_nowcheckqty.Text);
  706. batchqty = int.Parse(ob_batchqty.Text == "" ? "0" : ob_batchqty.Text);
  707. if (nowcheckqty >= batchqty)
  708. {
  709. ob_nowcheckqty.ForeColor = Color.Red;
  710. OperateResult.AppendText(">>当前采集数量已达到送检数量\n", Color.Red);
  711. if (AutoCut)
  712. {
  713. OperateResult.AppendText(">>批次" + ob_checkno.Text + "自动断批\n", Color.Green);
  714. }
  715. }
  716. }
  717. else
  718. {
  719. ob_batchqty.Text = "";
  720. ob_nowcheckqty.Text = "";
  721. ob_checkno.Text = "";
  722. SendCheck.Enabled = false;
  723. }
  724. if (ob_batchqty.Text != "")
  725. {
  726. SendCheck.Enabled = true;
  727. }
  728. else
  729. {
  730. SendCheck.Enabled = false;
  731. }
  732. }
  733. private void ob_checkno_TextChanged(object sender, EventArgs e)
  734. {
  735. if (ob_checkno.Text != "")
  736. {
  737. string Cut = dh.getFieldDataByCondition("product left join oqcbatch on ob_prodcode=pr_code", "pr_ifautocutcheckno", "ob_checkno='" + ob_checkno.Text + "'").ToString();
  738. if (Cut == "" || Cut == "0")
  739. AutoCut = false;
  740. else
  741. AutoCut = true;
  742. SendCheck.Enabled = true;
  743. }
  744. }
  745. private void PrintLabel_SelectedValueChanged(object sender, EventArgs e)
  746. {
  747. if (PrintLabel.SelectedValue != null && PrintLabel.SelectedValue.ToString() != "System.Data.DataRowView")
  748. {
  749. string PrintNums = dh.getFieldDataByCondition("label", "la_printnos", "la_id='" + PrintLabel.SelectedValue.ToString() + "'").ToString();
  750. PrintNum.Text = (PrintNums == "" ? "1" : PrintNums);
  751. }
  752. }
  753. private void DeleteAll_Click(object sender, EventArgs e)
  754. {
  755. if (pa_outboxcode.Text == "")
  756. {
  757. OperateResult.AppendText(">>箱号不能为空\n", Color.Red);
  758. return;
  759. }
  760. string Delete = MessageBox.Show(this.ParentForm, "是否确认拆箱?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
  761. if (Delete == "Yes")
  762. {
  763. DataTable dt = (DataTable)dh.ExecuteSql("select nvl(pa_iostatus,0) pa_iostatus,pa_outno,pa_checkno,ob_status,pa_mothercode,nvl(pa_downstatus,0)pa_downstatus from package left join oqcbatch on pa_checkno=ob_checkno where pa_outboxcode='" + pa_outboxcode.Text + "'", "select");
  764. if (dt.Rows.Count > 0)
  765. {
  766. if (dt.Rows[0]["pa_outno"].ToString() != "")
  767. {
  768. OperateResult.AppendText(">>卡通箱" + pa_outboxcode.Text + "已被出货单" + dt.Rows[0]["pa_outno"].ToString() + "采集,不允许操作\n", Color.Red);
  769. return;
  770. }
  771. if (dt.Rows[0]["pa_iostatus"].ToString() != "0")
  772. {
  773. OperateResult.AppendText(">>卡通箱" + pa_outboxcode.Text + "处于入库状态,不允许操作\n", Color.Red);
  774. return;
  775. }
  776. if (dt.Rows[0]["pa_mothercode"].ToString() == "")
  777. {
  778. if (dt.Rows[0]["pa_downstatus"].ToString() == "0")
  779. {
  780. string ob_status = dt.Rows[0]["ob_status"].ToString();
  781. string pa_checkno = dt.Rows[0]["pa_checkno"].ToString();
  782. //不存在抽检批次或者还未检验可以拆解
  783. if (ob_status == "" || ob_status == "ENTERING" || ob_status == "UNCHECK")
  784. {
  785. sql.Clear();
  786. sql.Append("select pd_makecode,count(1) num from packagedetail left join makeserial ");
  787. sql.Append("on ms_sncode=pd_barcode and ms_makecode=pd_makecode where pd_outboxcode='" + pa_outboxcode.Text + "' group by pd_makecode");
  788. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  789. List<string> SQLS1 = new List<string>();
  790. for (int i = 0; i < dt.Rows.Count; i++)
  791. {
  792. string ma_code = dt.Rows[i]["pd_makecode"].ToString();
  793. string num = dt.Rows[i]["num"].ToString();
  794. SQLS1.Add("delete from makeprocess where mp_sncode in (select ms_sncode from makeserial where ms_outboxcode='" + pa_outboxcode.Text + "' and ms_makecode='" + ma_code + "') and mp_makecode='" + ma_code + "' and mp_stepcode='" + User.CurrentStepCode + "'");
  795. SQLS1.Add("delete from steppassed where sp_sncode in (select ms_sncode from makeserial where ms_outboxcode='" + pa_outboxcode.Text + "' and ms_makecode='" + ma_code + "') and sp_makecode='" + ma_code + "' and sp_stepcode='" + User.CurrentStepCode + "'");
  796. SQLS1.Add("update makecraftdetail set mcd_inqty=mcd_inqty-" + num + ",mcd_outqty=mcd_outqty-" + num + ",mcd_okqty=mcd_okqty-" + num + " where mcd_macode='" + ma_code + "' and mcd_stepcode='" + User.CurrentStepCode + "'");
  797. //扣减已完工数
  798. SQLS1.Add("update make set ma_endqty=ma_endqty-(select count(1) from makeserial where ms_outboxcode='" + pa_outboxcode.Text + "' and ms_makecode='" + ma_code + "' and ms_status=2) where ma_code='" + ma_code + "'");
  799. }
  800. if (pa_checkno != "")
  801. {
  802. SQLS1.Add("update makeserial set ms_checkno='' where ms_outboxcode='" + pa_outboxcode.Text + "'");
  803. SQLS1.Add("update oqcbatch set ob_nowcheckqty=ob_nowcheckqty-(select count(1) from oqcbatchdetail where obd_outboxcode='" + pa_outboxcode.Text + "') where ob_checkno='" + pa_checkno + "'");
  804. SQLS1.Add("delete from oqcbatchdetail where obd_outboxcode='" + pa_outboxcode.Text + "'");
  805. }
  806. //更新序列号状态
  807. SQLS1.Add("update makeserial set ms_status=1,ms_outboxcode='',ms_nextstepcode= (case when ms_nextstepcode='" + User.CurrentStepCode + "' then ms_nextstepcode else ms_stepcode end ),ms_paststep=replace(ms_paststep,'," + User.CurrentStepCode + "','') where ms_outboxcode='" + pa_outboxcode.Text + "'");
  808. //抽检批次不为空的时候进行移除
  809. dh.ExecuteSQLTran(SQLS1.ToArray());
  810. string prcode = dh.getFieldDataByCondition("packagedetail", "pd_prodcode", "pd_outboxcode = '" + pa_outboxcode.Text + "'").ToString();
  811. string standqty = dh.getFieldDataByCondition("product", "pr_outboxinnerqty", "pr_code = '" + prcode + "'").ToString();
  812. if (standqty != "")
  813. {
  814. //置空原箱
  815. dh.ExecuteSql("update package set pa_checkno='',pa_prodcode='',pa_packtype='',pa_salecode='',pa_packageqty=0,pa_totalqty=0,pa_currentqty=0,pa_status=0,PA_STANDARDQTY = '" + standqty + "' where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  816. }
  817. else
  818. //置空原箱
  819. dh.ExecuteSql("update package set pa_checkno='',pa_prodcode='',pa_packtype='',pa_salecode='',pa_packageqty=0,pa_totalqty=0,pa_currentqty=0,pa_status=0 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  820. pa_status.Text = "0";
  821. //删除箱的明细
  822. dh.ExecuteSql("delete from packagedetail where pd_outboxcode='" + pa_outboxcode.Text + "'", "delete");
  823. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "卡通箱拆解", "成功", pa_outboxcode.Text, ob_checkno.Text);
  824. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "成功拆解!\n", Color.Green);
  825. LoadGridData();
  826. LoadCheckQTY();
  827. }
  828. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "已送检,不允许解除\n", Color.Red);
  829. }
  830. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "已下地,不允许解除\n", Color.Red);
  831. }
  832. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "已装箱" + dt.Rows[0]["pa_mothercode"].ToString() + ",不允许解除\n", Color.Red);
  833. }
  834. else OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "不存在\n", Color.Red);
  835. }
  836. }
  837. private void OutBoxLength_KeyDown(object sender, KeyEventArgs e)
  838. {
  839. if (e.KeyCode == Keys.Enter)
  840. {
  841. try
  842. {
  843. if (OutBoxLength.Text != "")
  844. {
  845. int.Parse(OutBoxLength.Text);
  846. }
  847. BaseUtil.SetCacheData("OutBoxLength", OutBoxLength.Text);
  848. if (!AutoGenBoxCode.Checked)
  849. {
  850. pa_outboxcode.Focus();
  851. pa_outboxcode.SelectAll();
  852. }
  853. else
  854. {
  855. sn_code.Focus();
  856. }
  857. }
  858. catch (Exception)
  859. {
  860. OutBoxLength.Clear();
  861. MessageBox.Show("请输入正确的长度");
  862. }
  863. }
  864. }
  865. private bool CheckOutBoxLength()
  866. {
  867. //勾选了检验长度进行校验
  868. if (OutBoxLength.Text != "")
  869. {
  870. try
  871. {
  872. int.Parse(OutBoxLength.Text);
  873. }
  874. catch (Exception)
  875. {
  876. MessageBox.Show("请填写正确的箱号长度");
  877. return false;
  878. }
  879. if (pa_outboxcode.Text.Length != int.Parse(OutBoxLength.Text))
  880. {
  881. OperateResult.AppendText(">>箱号长度错误,请重新输入箱号\n", Color.Red);
  882. return false;
  883. }
  884. }
  885. if (PreFix.Text != "")
  886. {
  887. try
  888. {
  889. if (pa_outboxcode.Text.Substring(0, PreFix.Text.Length) != PreFix.Text)
  890. {
  891. OperateResult.AppendText(">>箱号前缀不匹配,请重新输入箱号\n", Color.Red);
  892. return false;
  893. }
  894. }
  895. catch (Exception)
  896. {
  897. OperateResult.AppendText(">>箱号前缀不匹配,请重新输入箱号\n", Color.Red);
  898. return false;
  899. }
  900. }
  901. return true;
  902. }
  903. private void RefreshWeigh_Click(object sender, EventArgs e)
  904. {
  905. string prcode = dh.getFieldDataByCondition("packagedetail", "pd_prodcode", "pd_outboxcode = '" + pa_outboxcode.Text + "'").ToString();
  906. sql.Clear();
  907. sql.Append("select pr_cartonmaxw,pr_cartonunit,pr_cartonminw,pr_cartongw from product where pr_code='" + prcode + "'");
  908. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  909. if (dt.Rows.Count > 0)
  910. {
  911. //重量的临时变量
  912. string _weight = dt.Rows[0]["pr_cartongw"].ToString();
  913. string _maxweight = dt.Rows[0]["pr_cartonmaxw"].ToString();
  914. string _minweight = dt.Rows[0]["pr_cartonminw"].ToString();
  915. Weight = double.Parse(_weight == "" ? "0" : _weight);
  916. MaxWeight = double.Parse(_maxweight == "" ? "0" : _maxweight);
  917. MinWeight = double.Parse(_minweight == "" ? "0" : _minweight);
  918. if (Weight - MinWeight == MaxWeight - Weight)
  919. pr_cartonboxgw.Text = Weight + "±" + (MaxWeight - Weight) + dt.Rows[0]["pr_cartonunit"].ToString();
  920. else
  921. pr_cartonboxgw.Text = MinWeight + "-" + MaxWeight + dt.Rows[0]["pr_cartonunit"].ToString();
  922. }
  923. }
  924. private void LoadCollectedNum()
  925. {
  926. dt = (DataTable)dh.ExecuteSql("select mcd_inqty,ma_qty-mcd_inqty mcd_remainqty from make left join makecraftdetail on mcd_macode=ma_code where ma_code='" + ms_makecode.Text + "' and mcd_stepcode='" + User.CurrentStepCode + "'", "select");
  927. BaseUtil.SetFormValue(Controls, dt);
  928. }
  929. private void pa_remark_KeyDown(object sender, KeyEventArgs e)
  930. {
  931. if (Keys.Enter == e.KeyCode)
  932. {
  933. if (dh.CheckExist("package", "pa_outboxcode='" + pa_outboxcode.Text + "'"))
  934. {
  935. if (Remark_PreFix.Text != "")
  936. {
  937. try
  938. {
  939. if (pa_remark.Text.Substring(0, Remark_PreFix.Text.Length) != Remark_PreFix.Text)
  940. {
  941. OperateResult.AppendText(">>备注前缀不匹配,请重新输入备注信息\n", Color.Red);
  942. return;
  943. }
  944. }
  945. catch (Exception)
  946. {
  947. OperateResult.AppendText(">>备注前缀不匹配,请重新输入备注信息\n", Color.Red);
  948. return;
  949. }
  950. }
  951. if (!AllowRepeat.Checked)
  952. {
  953. DataTable dt = (DataTable)dh.ExecuteSql("select pa_outboxcode from package where pa_remark='" + pa_remark.Text.ToUpper() + "'", "select");
  954. if (dt.Rows.Count > 0)
  955. {
  956. OperateResult.AppendText(">>箱号" + dt.Rows[0][0].ToString() + "已采集关联信息" + pa_remark.Text + "\n", Color.Red);
  957. return;
  958. }
  959. }
  960. dh.UpdateByCondition("package", "pa_remark='" + pa_remark.Text.ToUpper() + "'", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  961. OperateResult.AppendText(">>箱号" + pa_outboxcode.Text + "关联信息" + pa_remark.Text + "采集成功\n", Color.Green);
  962. pa_remark.Text = "";
  963. if (!AutoGenBoxCode.Checked)
  964. {
  965. pa_outboxcode.SelectAll();
  966. pa_outboxcode.Focus();
  967. }
  968. else
  969. {
  970. sn_code.Focus();
  971. }
  972. }
  973. else OperateResult.AppendText(">>请先采集箱内数据\n", Color.Red);
  974. }
  975. }
  976. private void PreFix_KeyDown(object sender, KeyEventArgs e)
  977. {
  978. if (e.KeyCode == Keys.Enter)
  979. {
  980. BaseUtil.SetCacheData("PreFix", PreFix.Text);
  981. if (!AutoGenBoxCode.Checked)
  982. {
  983. pa_outboxcode.Focus();
  984. pa_outboxcode.SelectAll();
  985. }
  986. else
  987. {
  988. sn_code.Focus();
  989. }
  990. }
  991. }
  992. private void Remark_PreFix_KeyDown(object sender, KeyEventArgs e)
  993. {
  994. if (e.KeyCode == Keys.Enter)
  995. {
  996. BaseUtil.SetCacheData("Remark_PreFix", Remark_PreFix.Text);
  997. if (CollecRemark.Checked)
  998. {
  999. pa_remark.SelectAll();
  1000. pa_remark.Focus();
  1001. }
  1002. }
  1003. }
  1004. private bool CheckOutBoxLength(string ms_salecode_text)
  1005. {
  1006. if (AutoGenBoxCode.Checked)
  1007. {
  1008. if (ms_salecode_text != "")
  1009. {
  1010. DataTable dt = (DataTable)dh.ExecuteSql(" select pn_number,pn_id,pn_caller,pn_numberlength,pn_leadcode from PACKAGENUMBER where pn_caller='" + ms_salecode_text + "'", "select");
  1011. if (dt.Rows.Count > 0)
  1012. {
  1013. string pn_leadcode = dt.Rows[0]["pn_leadcode"].ToString();
  1014. int pn_numberlength = int.Parse(dt.Rows[0]["pn_numberlength"].ToString());
  1015. if (OutBoxLength.Text != (pn_leadcode.Length + pn_numberlength).ToString())
  1016. {
  1017. OutBoxLength.Text = (pn_leadcode.Length + pn_numberlength).ToString();
  1018. BaseUtil.SetCacheData("OutBoxLength", OutBoxLength.Text);
  1019. }
  1020. if (PreFix.Text != pn_leadcode)
  1021. {
  1022. PreFix.Text = pn_leadcode;
  1023. BaseUtil.SetCacheData("PreFix", PreFix.Text);
  1024. }
  1025. }
  1026. else
  1027. {
  1028. OperateResult.AppendText(">>订单号" + ms_salecode_text + "未维护箱号规则\n", Color.Black);
  1029. }
  1030. }
  1031. return true;
  1032. }
  1033. return CheckOutBoxLength();
  1034. }
  1035. private void AutoGenBoxCode_CheckedChanged(object sender, EventArgs e)
  1036. {
  1037. if (AutoGenBoxCode.Checked)
  1038. {
  1039. OutBoxLength.Enabled = false;
  1040. PreFix.Enabled = false;
  1041. }
  1042. else
  1043. {
  1044. OutBoxLength.Enabled = true;
  1045. PreFix.Enabled = true;
  1046. }
  1047. }
  1048. }
  1049. }