Packing_PackageCollectionWeigh.cs 63 KB

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