Packing_PackageCollectionWeigh.cs 65 KB

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