Packing_PalletCollection.cs 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. using LabelManager2;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Threading;
  8. using System.Windows.Forms;
  9. using UAS_MES_NEW.DataOperate;
  10. using UAS_MES_NEW.Entity;
  11. using UAS_MES_NEW.PublicForm;
  12. using UAS_MES_NEW.PublicMethod;
  13. namespace UAS_MES_NEW.Packing
  14. {
  15. public partial class Packing_PalletCollection : Form
  16. {
  17. AutoSizeFormClass asc = new AutoSizeFormClass();
  18. DataHelper dh;
  19. DataTable dt;
  20. LogStringBuilder sql = new LogStringBuilder();
  21. Packing_NewPallet NewPallet;
  22. string pa_nextstep = "";
  23. //箱类型
  24. string pa_type;
  25. //物料编号
  26. string pr_code;
  27. //Package表的主键
  28. string pa_id;
  29. ApplicationClass lbl;
  30. Document doc;
  31. Thread thread;
  32. string ErrorMessage = "";
  33. public Packing_PalletCollection()
  34. {
  35. InitializeComponent();
  36. }
  37. //创建打印进程
  38. private void NewPrint()
  39. {
  40. try
  41. {
  42. lbl = new ApplicationClass();
  43. BaseUtil.WriteLbl();
  44. }
  45. catch
  46. {
  47. OperateResult.AppendText("未正确安装CodeSoft软件\n", Color.Red);
  48. }
  49. }
  50. private void Make_PalletCollection_Load(object sender, EventArgs e)
  51. {
  52. asc.controllInitializeSize(this);
  53. thread = new Thread(NewPrint);
  54. SetLoadingWindow stw = new SetLoadingWindow(thread, "初始化打印程序");
  55. BaseUtil.SetFormCenter(stw);
  56. stw.ShowDialog();
  57. OutBoxLength.Text = BaseUtil.GetCacheData("PalletLength").ToString();
  58. PalletPreFix.Text = BaseUtil.GetCacheData("PalletPreFix").ToString();
  59. dh = SystemInf.dh;
  60. StepCount.StepCode = User.CurrentStepCode;
  61. StepCount.Source = User.UserSourceCode;
  62. StepCount.LineCode = User.UserLineCode;
  63. StepCount.Dh = dh;
  64. StepCount.Start();
  65. }
  66. private void Clean_Click(object sender, EventArgs e)
  67. {
  68. OperateResult.Clear();
  69. }
  70. private void palletcode_KeyDown(object sender, KeyEventArgs e)
  71. {
  72. if (e.KeyCode == Keys.Enter)
  73. {
  74. LoadGridData();
  75. sql.Clear();
  76. sql.Append("select pa_makecode,pa_id,pa_status,nvl(pa_standardqty,PR_PALLETQTY)pa_standardqty,pa_prodcode,pa_packageqty,pa_totalqty,pa_salecode,pa_currentqty,pr_code pa_prodcode,pa_outboxcode,pa_totalqty,pa_custcode ");
  77. sql.Append("from package left join packagedetail on pa_id =pd_paid left join product on pr_code=pd_prodcode where pa_outboxcode='" + pa_outboxcode.Text + "' and pa_type =3");
  78. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  79. if (dt.Rows.Count > 0)
  80. {
  81. BaseUtil.SetFormValue(Controls, dt);
  82. pa_id = dt.Rows[0]["pa_id"].ToString();
  83. }
  84. if (CheckOutBoxLength())
  85. {
  86. if (pa_standardqty.Text == "")
  87. pa_standardqty.Focus();
  88. else
  89. outboxcode.Focus();
  90. }
  91. }
  92. }
  93. //箱号Enter事件
  94. private void outboxcode_KeyDown(object sender, KeyEventArgs e)
  95. {
  96. if (e.KeyCode == Keys.Enter)
  97. {
  98. if (LogicHandler.CheckStepAttribute(Tag.ToString(), User.UserSourceCode, out ErrorMessage))
  99. {
  100. if (outboxcode.Text == "")
  101. {
  102. OperateResult.AppendText(">>箱号不能为空\n", Color.Red);
  103. return;
  104. }
  105. sql.Clear();
  106. sql.Append("select nvl(pa_iostatus,0)pa_iostatus,pa_outno,pa_makecode pd_makecode,nvl(pa_downstatus,0)pa_downstatus,pa_salecode pd_salecode,pr_packrule,pa_id,pa_prodcode pd_prodcode,pa_status,pa_mothercode,pa_nextstep ");
  107. sql.Append("from packagedetail left join package on pd_paid=pa_id left join product on pd_prodcode=pr_code where pd_outboxcode='" + outboxcode.Text + "'");
  108. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  109. if (dt.Rows.Count > 0)
  110. {
  111. BaseUtil.SetFormValue(this.Controls, dt);
  112. if (dt.Rows[0]["pa_downstatus"].ToString() != "0")
  113. {
  114. OperateResult.AppendText(">>箱号" + outboxcode.Text + "下地状态不允许采集\n", Color.Red, outboxcode);
  115. return;
  116. }
  117. if (dt.Rows[0]["pa_outno"].ToString() != "")
  118. {
  119. OperateResult.AppendText(">>箱号" + outboxcode.Text + "已被出货单" + dt.Rows[0]["pa_outno"].ToString() + "采集,不允许操作\n", Color.Red);
  120. return;
  121. }
  122. if (dt.Rows[0]["pa_iostatus"].ToString() != "0")
  123. {
  124. OperateResult.AppendText(">>箱号" + outboxcode.Text + "已入库不允许采集\n", Color.Red, outboxcode);
  125. return;
  126. }
  127. if (dt.Rows[0]["pa_mothercode"].ToString() != "")
  128. {
  129. if (pa_outboxcode.Text == "")
  130. {
  131. pa_outboxcode.Text = dt.Rows[0]["pa_mothercode"].ToString();
  132. palletcode_KeyDown(sender, e);
  133. }
  134. }
  135. string unfinpack = dh.getFieldDataByCondition("Line", "nvl(li_allowUnFinPack,0)", "li_code='" + User.UserLineCode + "'").ToString();
  136. pa_nextstep = dt.Rows[0]["pa_nextstep"].ToString();
  137. if (pa_nextstep != User.CurrentStepCode && pa_nextstep != "" && (unfinpack == "0" || unfinpack == ""))
  138. {
  139. OperateResult.AppendText(">>箱号" + outboxcode.Text + "的下一工序不是当前岗位资源对应工序\n", Color.Red, outboxcode);
  140. return;
  141. }
  142. sql.Clear();
  143. sql.Append("select nvl(pa_iostatus,0) pa_iostatus,pa_outno from package where pa_outboxcode='" + pa_outboxcode.Text + "'");
  144. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  145. if (dt.Rows.Count > 0)
  146. {
  147. if (dt.Rows[0]["pa_outno"].ToString() != "")
  148. {
  149. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "已被出货单" + dt.Rows[0]["pa_outno"].ToString() + "采集,不允许操作\n", Color.Red);
  150. return;
  151. }
  152. if (dt.Rows[0]["pa_iostatus"].ToString() != "0")
  153. {
  154. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "处于入库状态,不允许操作\n", Color.Red);
  155. return;
  156. }
  157. }
  158. //为空表示线外
  159. if (pa_nextstep == "")
  160. {
  161. //判断线外,必须已完工并且未入库
  162. dt = (DataTable)dh.ExecuteSql("select wm_concat(ms_sncode) from mes_package_view left join makeserial on v_barcode=ms_sncode and v_makecode = ms_makecode where v_outboxcode='" + outboxcode.Text + "' and ms_status<>2", "select");
  163. if (dt.Rows[0][0].ToString() != "" && (unfinpack != "0" || unfinpack == ""))
  164. {
  165. OperateResult.AppendText(">>序列号" + dt.Rows[0][0].ToString() + "尚未完工\n", Color.Red);
  166. return;
  167. }
  168. }
  169. }
  170. else
  171. {
  172. OperateResult.AppendText(">>箱号" + outboxcode.Text + "未采集内容或不存在,不允许装栈板\n", Color.Red, outboxcode);
  173. return;
  174. }
  175. if (!Cancel.Checked)
  176. {
  177. pa_status.Text = dh.getFieldDataByCondition("package", "nvl(pa_status,0)pa_status", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString();
  178. if (pa_outboxcode.Text == "" && AutoOutBoxCode.Checked)
  179. {
  180. //箱已采集满并且未勾选自动生成
  181. if (pa_standardqty.Text == pa_totalqty.Text && !AutoOutBoxCode.Checked)
  182. {
  183. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "已采集满\n", Color.Red, outboxcode);
  184. return;
  185. }
  186. else
  187. {
  188. pa_outboxcode.Text = LogicHandler.GetOutBoxCode("PALLET", "", pa_prodcode.Text, User.UserCode);
  189. }
  190. }
  191. else if (pa_outboxcode.Text != "" && pa_status.Text == "1" && AutoOutBoxCode.Checked)
  192. {
  193. pa_outboxcode.Text = LogicHandler.GetOutBoxCode("PALLET", "", pa_prodcode.Text, User.UserCode);
  194. }
  195. else if (pa_outboxcode.Text == "")
  196. {
  197. OperateResult.AppendText(">>栈板号不能为空\n", Color.Red);
  198. return;
  199. }
  200. if (!CheckOutBoxLength())
  201. {
  202. return;
  203. }
  204. dt = (DataTable)dh.ExecuteSql("select pa_id from package where pa_outboxcode='" + pa_outboxcode.Text + "'", "select");
  205. if (dt.Rows.Count == 0)
  206. {
  207. pa_id = dh.GetSEQ("package_seq");
  208. sql.Clear();
  209. sql.Append("insert into package (pa_id,pa_outboxcode,PA_STANDARDQTY,pa_makecode,pa_indate,pa_packageqty,pa_type,pa_prodcode,pa_level,PA_STATUS,pa_sccode,pa_currentstep,pa_salecode)values");
  210. sql.Append("(" + pa_id + ",'" + pa_outboxcode.Text + "','" + pa_standardqty.Text + "','" + pd_makecode.Text + "',sysdate,'0',3,'" + pd_prodcode.Text + "',0,0,'" + User.UserSourceCode + "','" + User.CurrentStepCode + "','" + pd_salecode.Text + "')");
  211. dh.ExecuteSql(sql.GetString(), "insert");
  212. }
  213. else
  214. {
  215. pa_id = dt.Rows[0]["pa_id"].ToString();
  216. }
  217. palletcode_KeyDown(sender, e);
  218. if (int.Parse(pa_totalqty.Text == "" ? "0" : pa_totalqty.Text) > 0)
  219. {
  220. if (!LogicHandler.CheckPackRule(pr_packrule.Text, pa_outboxcode.Text, outboxcode.Text, pa_makecode.Text, pa_salecode.Text, pa_prodcode.Text, "栈板", out ErrorMessage))
  221. {
  222. OperateResult.AppendText(">>" + ErrorMessage + "\n", Color.Red, outboxcode);
  223. return;
  224. }
  225. }
  226. dt = (DataTable)dh.ExecuteSql("select pa_totalqty,pa_mothercode,nvl(pa_status,0) pa_status from package where pa_outboxcode='" + outboxcode.Text + "'", "select");
  227. if (dt.Rows.Count > 0)
  228. {
  229. //判断是否已经装箱
  230. int sonboxtotalqty = int.Parse(dt.Rows[0]["pa_totalqty"].ToString());
  231. if (dt.Rows[0]["pa_mothercode"].ToString() == "")
  232. {
  233. if (dt.Rows[0]["pa_status"].ToString() == "1")
  234. {
  235. pa_totalqty.Text = dh.getFieldDataByCondition("package", "pa_totalqty", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString();
  236. if (int.Parse(pa_totalqty.Text == "" ? "0" : pa_totalqty.Text) + sonboxtotalqty > int.Parse(pa_standardqty.Text == "" ? "0" : pa_standardqty.Text))
  237. {
  238. OperateResult.AppendText(">>采集箱号" + outboxcode.Text + "后超出容量\n", Color.Red, outboxcode);
  239. return;
  240. }
  241. if (int.Parse(pa_totalqty.Text == "" ? "0" : pa_totalqty.Text) == 0)
  242. {
  243. dh.ExecuteSql("update package set pa_prodcode='" + pd_prodcode.Text + "',pa_salecode='" + pd_salecode.Text + "',pa_makecode='" + pd_makecode.Text + "' where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  244. }
  245. List<string> SQLS = new List<string>();
  246. sql.Clear();
  247. sql.Append("insert into packagedetail(pd_id, pd_paid, pd_outboxcode,pd_makecode,pd_prodcode,pd_innerboxcode, pd_innerqty,pd_builddate)");
  248. sql.Append("select packagedetail_seq.nextval,'" + pa_id + "','" + pa_outboxcode.Text + "','" + pd_makecode.Text + "','" + pd_prodcode.Text + "','" + outboxcode.Text + "' ");
  249. sql.Append(",(select nvl(sum(pd_innerqty),0) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode=");
  250. sql.Append("'" + outboxcode.Text + "'),sysdate from package where pa_outboxcode='" + outboxcode.Text + "'");
  251. SQLS.Add(sql.GetString());
  252. //如果采集完这个超出了容量提示
  253. SQLS.Add("update package set PA_CURRENTQTY=nvl(PA_CURRENTQTY,0)+1,PA_PACKAGEQTY=nvl(PA_PACKAGEQTY,0)+1,PA_TOTALQTY=(select sum(pd_innerqty) from packagedetail left join package on pa_id=pd_paid where pa_outboxcode='" + pa_outboxcode.Text + "') where pa_outboxcode='" + pa_outboxcode.Text + "' and pa_type=3");
  254. SQLS.Add("update package set pa_mothercode='" + pa_outboxcode.Text + "' where pa_outboxcode='" + outboxcode.Text + "'");
  255. dh.ExecuteSQLTran(SQLS.ToArray());
  256. //更新大箱的栈板号
  257. if (dh.getFieldDataByCondition("package", "pa_makecode", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString() == "")
  258. {
  259. string carton_macode = dh.getFieldDataByCondition("package", "pa_makecode", "pa_outboxcode='" + outboxcode.Text + "'").ToString();
  260. pa_makecode.Text = carton_macode;
  261. dh.ExecuteSql("update package set pa_makecode='" + carton_macode + "' where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  262. }
  263. //如果是线内并且下一工序等于当前岗位资源工序
  264. if (pa_nextstep != "" && pa_nextstep == User.CurrentStepCode)
  265. {
  266. LogicHandler.OutBoxStepPass(outboxcode.Text, pa_makecode.Text, User.UserSourceCode, User.UserCode, "栈板采集成功,栈板号:" + pa_outboxcode.Text, "栈板采集", out ErrorMessage);
  267. }
  268. if (pa_totalqty.Text == "1")
  269. {
  270. string nextstepcode = dh.getFieldDataByCondition("mes_package_view left join makeserial on ms_sncode=v_barcode", "ms_nextstepcode", "v_outboxcode='" + outboxcode.Text + "'").ToString();
  271. dh.UpdateByCondition("package", "pa_nextstep='" + nextstepcode + "'", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  272. }
  273. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, "", User.UserLineCode, User.UserSourceCode, "栈板采集", "栈板" + pa_outboxcode.Text + "采集箱" + outboxcode.Text + "成功", pa_outboxcode.Text, "");
  274. OperateResult.AppendText(">>箱号" + outboxcode.Text + "采集成功!\n", Color.Green, outboxcode);
  275. LoadCollectNum();
  276. palletcode_KeyDown(sender, e);
  277. if (pa_standardqty.Text == pa_totalqty.Text)
  278. {
  279. dh.ExecuteSql("update package set pa_status=1 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  280. OperateResult.AppendText("栈板" + pa_outboxcode.Text + "已装满,封栈板成功\n");
  281. if (!AutoOutBoxCode.Checked)
  282. {
  283. pa_outboxcode.Focus();
  284. pa_outboxcode.SelectAll();
  285. }
  286. else
  287. {
  288. outboxcode.Focus();
  289. outboxcode.SelectAll();
  290. }
  291. if (AutoPrint.Checked)
  292. {
  293. OperateResult.AppendText(">>打印栈板" + pa_outboxcode.Text + ",自动打印!\n", Color.Green);
  294. Printlab.PerformClick();
  295. }
  296. }
  297. }
  298. else OperateResult.AppendText(">>箱号" + outboxcode.Text + "尚未封箱\n", Color.Red, outboxcode);
  299. }
  300. else
  301. {
  302. if (dt.Rows[0]["pa_mothercode"].ToString() == pa_outboxcode.Text)
  303. OperateResult.AppendText(">>箱号" + outboxcode.Text + "已在本栈板内\n", Color.Red, outboxcode);
  304. else
  305. OperateResult.AppendText(">>箱号" + outboxcode.Text + "已采集至栈板" + dt.Rows[0]["pa_mothercode"].ToString() + "\n", Color.Red, outboxcode);
  306. }
  307. }
  308. else OperateResult.AppendText(">>箱号" + outboxcode.Text + "不存在\n", Color.Red, outboxcode);
  309. }
  310. //进行拆箱操作
  311. else
  312. {
  313. sql.Clear();
  314. sql.Append("select nvl(pa_iostatus,0)pa_iostatus from packagedetail left join package on pa_id =pd_paid where pd_outboxcode='" + pa_outboxcode.Text + "' ");
  315. sql.Append("and pd_innerboxcode='" + outboxcode.Text + "'");
  316. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  317. if (dt.Rows.Count > 0)
  318. {
  319. if (dt.Rows[0]["pa_iostatus"].ToString() == "0")
  320. {
  321. List<string> SQLS = new List<string>();
  322. //删除明细
  323. SQLS.Add("delete from packagedetail where pd_outboxcode='" + pa_outboxcode.Text + "' and pd_innerboxcode='" + outboxcode.Text + "'");
  324. //减少箱内容量
  325. SQLS.Add("update package set pa_packageqty=pa_packageqty-1,pa_totalqty=pa_totalqty-(select pa_totalqty from package where pa_outboxcode='" + outboxcode.Text + "'),pa_currentqty=pa_currentqty-1,pa_status=0 where pa_outboxcode='" + pa_outboxcode.Text + "'");
  326. SQLS.Add("update package set pa_mothercode='' where pa_outboxcode='" + outboxcode.Text + "'");
  327. dh.ExecuteSQLTran(SQLS.ToArray());
  328. OperateResult.AppendText(">>箱号" + outboxcode.Text + "取消采集成功\n", Color.Green);
  329. LoadCollectNum();
  330. palletcode_KeyDown(sender, e);
  331. outboxcode.Clear();
  332. }
  333. else OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "已入库,不允许取消采集\n", Color.Red);
  334. }
  335. else OperateResult.AppendText(">>箱号" + outboxcode.Text + "不在栈板" + pa_outboxcode.Text + "\n", Color.Red);
  336. }
  337. }
  338. }
  339. }
  340. private void LoadGridData()
  341. {
  342. sql.Clear();
  343. sql.Append("select pd_prodcode,nvl(pd_barcode,PD_INNERBOXCODE) code ,pd_innerqty,pa_salecode");
  344. sql.Append(",pd_makecode,pa_prodcode,pa_custcode,pa_packageqty from packagedetail left join package on pd_paid=pa_id left ");
  345. sql.Append("join product on pr_code=pa_prodcode where pa_outboxcode ='" + pa_outboxcode.Text + "' and pa_type=3");
  346. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  347. if (dt.Rows.Count == 0 && dh.CheckExist("package", "pa_outboxcode ='" + pa_outboxcode.Text + "' and pa_type=3"))
  348. {
  349. dh.ExecuteSql("update package set pa_checkno='',pa_prodcode='',pa_packtype='',pa_salecode='',pa_makecode='',pa_packageqty=0,pa_totalqty=0,pa_currentqty=0,pa_status=0 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  350. }
  351. BaseUtil.FillDgvWithDataTable(PackageInf, dt);
  352. }
  353. private void FillPrintLabel()
  354. {
  355. DataTable _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='" + pa_prodcode.Text + "' and la_templatetype='栈板标' and la_statuscode='AUDITED' order by la_isdefault", "select");
  356. PrintLabel.DataSource = _dt;
  357. PrintLabel.DisplayMember = "la_url";
  358. PrintLabel.ValueMember = "la_id";
  359. }
  360. private void LoadCollectNum()
  361. {
  362. pa_totalqty.Text = dh.getFieldDataByCondition("package", "pa_totalqty", "pa_outboxcode='" + pa_outboxcode.Text + "' and pa_type=3").ToString();
  363. }
  364. private void Make_PalletCollection_SizeChanged(object sender, EventArgs e)
  365. {
  366. asc.controlAutoSize(this);
  367. }
  368. private void NewPallet_Click(object sender, EventArgs e)
  369. {
  370. NewPallet = new Packing_NewPallet("PALLET", pa_makecode.Text);
  371. NewPallet.Controls["Confirm"].Click += Make_PalletCollection_Click;
  372. BaseUtil.SetFormCenter(NewPallet);
  373. NewPallet.ShowDialog();
  374. }
  375. private void Make_PalletCollection_Click(object sender, EventArgs e)
  376. {
  377. pa_outboxcode.Text = NewPallet.OutBoxCode;
  378. palletcode_KeyDown(new object(), new KeyEventArgs(Keys.Enter));
  379. NewPallet.Close();
  380. }
  381. private void Print_Click(object sender, EventArgs e)
  382. {
  383. if (PrintLabel.Items.Count != 0)
  384. {
  385. if (dh.getFieldDataByCondition("package", "pa_status", "pa_outboxcode='" + pa_outboxcode.Text + "'").ToString() == "1")
  386. {
  387. if (!AutoOutBoxCode.Checked)
  388. {
  389. pa_outboxcode.Focus();
  390. pa_outboxcode.SelectAll();
  391. }
  392. else
  393. {
  394. outboxcode.Focus();
  395. outboxcode.SelectAll();
  396. }
  397. //doc = lbl.Documents.Open(PrintLabel.Text);
  398. if (Print.CodeSoft(Tag.ToString(), ref lbl, PrintLabel.Text, PrintLabel.SelectedValue.ToString(), PrinterList.Text, pa_outboxcode.Text, int.Parse(PrintNum.Text), pa_makecode.Text, pa_prodcode.Text, "栈板标", "0", out ErrorMessage))
  399. {
  400. OperateResult.AppendText(">>打印栈板" + pa_outboxcode.Text + "\n", Color.Black);
  401. }
  402. else
  403. {
  404. OperateResult.AppendText(ErrorMessage + "\n", Color.Red);
  405. }
  406. }
  407. else OperateResult.AppendText(">>必须封栈板才能进行打印\n", Color.Red);
  408. }
  409. else OperateResult.AppendText(">>产品" + pa_prodcode.Text + "未维护打印标签\n", Color.Red);
  410. }
  411. private void ReleasePallet_Click(object sender, EventArgs e)
  412. {
  413. if (dh.getRowCount("packagedetail", "pd_outboxcode='" + pa_outboxcode.Text + "'") > 0)
  414. {
  415. string Delete = MessageBox.Show(this.ParentForm, "是否确认拆栈板?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
  416. if (Delete == "Yes")
  417. {
  418. sql.Clear();
  419. sql.Append("select nvl(pa_iostatus,0) pa_iostatus,pa_outno from package where pa_outboxcode='" + pa_outboxcode.Text + "'");
  420. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  421. if (dt.Rows.Count > 0)
  422. {
  423. if (dt.Rows[0]["pa_outno"].ToString() != "")
  424. {
  425. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "已被出货单" + dt.Rows[0]["pa_outno"].ToString() + "采集,不允许操作\n", Color.Red);
  426. return;
  427. }
  428. if (dt.Rows[0]["pa_iostatus"].ToString() != "0")
  429. {
  430. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "处于入库状态,不允许操作\n", Color.Red);
  431. return;
  432. }
  433. }
  434. //如果含有下一执行步骤的撤销过站,否则直接删除
  435. if (dh.getFieldDataByCondition("package", "pa_nextstep", "pa_mothercode='" + pa_outboxcode.Text + "'").ToString() != "")
  436. LogicHandler.OutBoxDrawStepPass(pa_outboxcode.Text, pa_makecode.Text, User.UserSourceCode);
  437. else
  438. {
  439. List<string> SQLS = new List<string>();
  440. SQLS.Add("delete from packagedetail where pd_outboxcode='" + pa_outboxcode.Text + "'");
  441. SQLS.Add("update package set pa_packageqty=0,pa_totalqty=0,pa_currentqty=0,pa_status=0 where pa_outboxcode='" + pa_outboxcode.Text + "'");
  442. SQLS.Add("update package set pa_mothercode='' where pa_mothercode='" + pa_outboxcode.Text + "'");
  443. dh.ExecuteSQLTran(SQLS.ToArray());
  444. }
  445. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "栈板采集", "解除栈板" + pa_outboxcode.Text + "成功", pa_outboxcode.Text, "");
  446. OperateResult.AppendText(">>栈板号" + pa_outboxcode.Text + "解除成功\n", Color.Green);
  447. palletcode_KeyDown(new object(), new KeyEventArgs(Keys.Enter));
  448. }
  449. }
  450. else OperateResult.AppendText(">>栈板号" + pa_outboxcode.Text + "未采集箱\n", Color.Red);
  451. }
  452. private void Make_PalletCollection_FormClosing(object sender, FormClosingEventArgs e)
  453. {
  454. BaseUtil.ClosePrint(lbl);
  455. }
  456. private void Packing_Click(object sender, EventArgs e)
  457. {
  458. if (pa_outboxcode.Text != "")
  459. {
  460. sql.Clear();
  461. sql.Append("select nvl(pa_status,0) pa_status from packagedetail left join package ");
  462. sql.Append("on pa_id=pd_paid where pd_outboxcode='" + pa_outboxcode.Text + "'");
  463. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  464. if (dt.Rows.Count > 0)
  465. {
  466. if (dt.Rows[0]["pa_status"].ToString() == "0")
  467. {
  468. string Seal = MessageBox.Show(this.ParentForm, "是否确认封栈板?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
  469. if (Seal == "Yes")
  470. {
  471. OperateResult.AppendText(">>栈板号" + pa_outboxcode.Text + "装栈板成功\n", Color.Green);
  472. LogicHandler.DoCommandLog(Tag.ToString(), User.UserCode, pa_makecode.Text, User.UserLineCode, User.UserSourceCode, "栈板采集", "封栈板" + pa_outboxcode.Text + "成功", outboxcode.Text, "");
  473. dh.ExecuteSql("update package set pa_status=1 where pa_outboxcode='" + pa_outboxcode.Text + "'", "update");
  474. pa_status.Text = "1";
  475. if (!AutoOutBoxCode.Checked)
  476. {
  477. pa_outboxcode.Focus();
  478. pa_outboxcode.SelectAll();
  479. }
  480. else
  481. {
  482. outboxcode.Focus();
  483. outboxcode.SelectAll();
  484. }
  485. }
  486. }
  487. else OperateResult.AppendText(">>栈板号" + pa_outboxcode.Text + "已封栈板\n", Color.Red);
  488. }
  489. else OperateResult.AppendText(">>栈板号" + pa_outboxcode.Text + "未采集内容\n", Color.Red);
  490. }
  491. else OperateResult.AppendText(">>栈板号不能为空\n", Color.Red);
  492. }
  493. private void PrintLabel_SelectedValueChanged(object sender, EventArgs e)
  494. {
  495. if (PrintLabel.SelectedValue != null && PrintLabel.SelectedValue.ToString() != "System.Data.DataRowView")
  496. {
  497. string PrintNums = dh.getFieldDataByCondition("label", "la_printnos", "la_id='" + PrintLabel.SelectedValue.ToString() + "'").ToString();
  498. PrintNum.Text = (PrintNums == "" ? "1" : PrintNums);
  499. }
  500. }
  501. private void pa_prodcode_TextChanged(object sender, EventArgs e)
  502. {
  503. FillPrintLabel();
  504. }
  505. private void pa_standardqty_KeyDown(object sender, KeyEventArgs e)
  506. {
  507. if (e.KeyCode == Keys.Enter)
  508. {
  509. ResetPackageQTY();
  510. }
  511. }
  512. private void ResetPackageQTY()
  513. {
  514. if (pa_outboxcode.Text != "")
  515. {
  516. DataTable dt = (DataTable)dh.ExecuteSql("select pa_totalqty,pa_status from package where pa_outboxcode='" + pa_outboxcode.Text + "'", "select");
  517. if (dt.Rows.Count > 0)
  518. {
  519. string total = dt.Rows[0]["pa_totalqty"].ToString();
  520. if (int.Parse(pa_standardqty.Text) >= int.Parse(total))
  521. {
  522. dh.UpdateByCondition("package", "pa_standardqty='" + pa_standardqty.Text + "'", "pa_outboxcode='" + pa_outboxcode.Text + "'");
  523. OperateResult.AppendText(">>栈板" + pa_outboxcode.Text + "修改容量成功,已修改为" + pa_standardqty.Text + "\n", Color.Green);
  524. outboxcode.Focus();
  525. return;
  526. }
  527. else OperateResult.AppendText(">>容量不能小于已装数量\n", Color.Red);
  528. }
  529. else outboxcode.Focus();
  530. }
  531. }
  532. private bool CheckOutBoxLength()
  533. {
  534. //勾选了检验长度进行校验
  535. if (OutBoxLength.Text != "")
  536. {
  537. try
  538. {
  539. int.Parse(OutBoxLength.Text);
  540. }
  541. catch (Exception)
  542. {
  543. MessageBox.Show("请填写正确的箱号长度");
  544. return false;
  545. }
  546. if (pa_outboxcode.Text.Length != int.Parse(OutBoxLength.Text))
  547. {
  548. OperateResult.AppendText(">>箱号长度错误,请重新输入箱号\n", Color.Red);
  549. return false;
  550. }
  551. else return true;
  552. }
  553. if (PalletPreFix.Text != "")
  554. {
  555. try
  556. {
  557. if (pa_outboxcode.Text.Substring(0, PalletPreFix.Text.Length) != PalletPreFix.Text)
  558. {
  559. OperateResult.AppendText(">>箱号前缀不匹配,请重新输入箱号\n", Color.Red);
  560. return false;
  561. }
  562. }
  563. catch (Exception)
  564. {
  565. OperateResult.AppendText(">>箱号前缀不匹配,请重新输入箱号\n", Color.Red);
  566. return false;
  567. }
  568. }
  569. return true;
  570. }
  571. private void OutBoxLength_KeyDown(object sender, KeyEventArgs e)
  572. {
  573. if (e.KeyCode == Keys.Enter)
  574. {
  575. try
  576. {
  577. if (OutBoxLength.Text != "")
  578. {
  579. int.Parse(OutBoxLength.Text);
  580. }
  581. BaseUtil.SetCacheData("PalletLength", OutBoxLength.Text);
  582. pa_outboxcode.Focus();
  583. }
  584. catch (Exception)
  585. {
  586. OutBoxLength.Clear();
  587. MessageBox.Show("请输入正确的长度");
  588. }
  589. }
  590. }
  591. private void PalletPreFix_KeyDown(object sender, KeyEventArgs e)
  592. {
  593. if (e.KeyCode == Keys.Enter)
  594. {
  595. BaseUtil.SetCacheData("PalletPreFix", PalletPreFix.Text);
  596. pa_outboxcode.Focus();
  597. }
  598. }
  599. }
  600. }