Packing_PackageCollectionWeigh_HUAGUAN.cs 61 KB

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