Make_PalletCollection.cs 31 KB

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