Make_PalletCollection.cs 31 KB

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