Make_Sndown.cs 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading;
  9. using System.Windows.Forms;
  10. using UAS_MES_NEW.DataOperate;
  11. using UAS_MES_NEW.Entity;
  12. using UAS_MES_NEW.PublicForm;
  13. using UAS_MES_NEW.PublicMethod;
  14. namespace UAS_MES_NEW.Make
  15. {
  16. public partial class Make_Sndown : Form
  17. {
  18. DataHelper dh;
  19. LogStringBuilder sql = new LogStringBuilder();
  20. AutoSizeFormClass asc = new AutoSizeFormClass();
  21. DataTable ComBoxData = new DataTable();
  22. DataTable Dbfind;
  23. public Make_Sndown()
  24. {
  25. InitializeComponent();
  26. }
  27. private void Query_OnlineTraceBack_Load(object sender, EventArgs e)
  28. {
  29. asc.controllInitializeSize(this);
  30. dh = SystemInf.dh;
  31. //工单号放大镜配置
  32. ma_code.TableName = "make left join product on ma_prodcode=pr_code";
  33. ma_code.SelectField = "ma_code # 工单号,ma_prodcode # 产品编号,ma_qty # 工单数量,pr_detail # 产品名称,ma_softversion # 软件版本";
  34. ma_code.FormName = Name;
  35. ma_code.SetValueField = new string[] { "ma_code" };
  36. ma_code.Condition = "ma_statuscode='STARTED'";
  37. ma_code.DbChange += Ma_code_DbChange;
  38. DataTable dt = (DataTable)dh.ExecuteSql(" select li_code,li_name from line ", "select");
  39. linecode.DisplayMember = "li_name";
  40. linecode.ValueMember = "li_code";
  41. linecode.DataSource = dt;
  42. linecode.Text = "";
  43. }
  44. private void Ma_code_DbChange(object sender, EventArgs e)
  45. {
  46. Dbfind = ma_code.ReturnData;
  47. BaseUtil.SetFormValue(this.Controls, Dbfind);
  48. // Query.PerformClick();
  49. }
  50. private void Query_OnlineTraceBack_SizeChanged(object sender, EventArgs e)
  51. {
  52. asc.controlAutoSize(this);
  53. }
  54. private void Query_Click(object sender, EventArgs e)
  55. {
  56. if (dh.CheckExist("make", "ma_code='" + ma_code.Text + "'"))
  57. {
  58. string condition = BaseUtil.GetScreenSqlCondition(ma_code, linecode, ms_stepcode, sncode);
  59. sql.Clear();
  60. sql.Append("select sp_id,sp_sncode,sp_makecode,sp_prodcode,li_name,st_name,sp_date from steppassed left join line on sp_linecode = li_code left join step on sp_stepcode = st_code ");
  61. sql.Append(condition);
  62. sql.Append("and sp_date between to_date('" + BeginDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + "', 'yyyy-mm-dd hh24:mi:ss') and to_date('" + EndDate.Value.ToString("yyyy-MM-dd HH:mm:ss") + "', 'yyyy-mm-dd hh24:mi:ss') and not EXISTS (select 1 from makedown where (md_sncode = sp_sncode or md_code = sp_sncode) and md_status = 0 and md_macode = sp_makecode)");
  63. sql.Append(" order by sp_date asc ");
  64. DataTable dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  65. BaseUtil.FillDgvWithDataTable(SnInf, dt);
  66. checkBox1.Checked = false;
  67. Count.Text = "";
  68. }
  69. else
  70. {
  71. MessageBox.Show("工单号" + ma_code.Text + "不存在");
  72. //BaseUtil.CleanDataGridView(SnInf);
  73. //ma_code.Text = "";
  74. }
  75. }
  76. private void normalButton1_Click(object sender, EventArgs e)
  77. {
  78. Thread InitPrint;
  79. InitPrint = new Thread(InPrint);
  80. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "SN锁定中");
  81. BaseUtil.SetFormCenter(stw);
  82. stw.ShowDialog();
  83. }
  84. private void InPrint()
  85. {
  86. try
  87. {
  88. int count = SnInf.Rows.Count;
  89. int check = 0;
  90. for (int i = 0; i < count; i++)
  91. {
  92. DataGridViewCheckBoxCell checkCell = (DataGridViewCheckBoxCell)SnInf.Rows[i].Cells["choose1"];
  93. Boolean flag = Convert.ToBoolean(checkCell.Value);
  94. if (flag == true)
  95. {
  96. if (!dh.CheckExist("MAKEDOWN", "(MD_SNCODE = '" + SnInf.Rows[i].Cells["sp_sncode"].Value.ToString() + "' or MD_CODE = '" + SnInf.Rows[i].Cells["sp_sncode"].Value.ToString() + "') and MD_MACODE = '" + SnInf.Rows[i].Cells["sp_makecode"].Value.ToString() + "' and MD_STATUS = 0 "))
  97. {
  98. sql.Clear();
  99. sql.Append("INSERT INTO MAKEDOWN (MD_ID,MD_MSID,MD_LINECODE,MD_STEPCODE,");
  100. sql.Append("MD_SNCODE,MD_PRODCODE,MD_MACODE, MD_CODE,");
  101. sql.Append("MD_DOWNDATE,MD_DOWNMAN,MD_STATUS) select MAKEDOWN_seq.nextval,ms_id,'" + SnInf.Rows[i].Cells["li_name"].Value.ToString() + "',");
  102. sql.Append("'" + SnInf.Rows[i].Cells["st_name"].Value.ToString() + "',ms_sncode,'" + SnInf.Rows[i].Cells["sp_prodcode"].Value.ToString() + "','" + SnInf.Rows[i].Cells["sp_makecode"].Value.ToString() + "',ms_code,sysdate,'" + User.UserCode + "','0' from makeserial where (ms_sncode = '" + SnInf.Rows[i].Cells["sp_sncode"].Value.ToString() + "' or ms_code = '" + SnInf.Rows[i].Cells["sp_sncode"].Value.ToString() + "') and ms_makecode = '" + SnInf.Rows[i].Cells["sp_makecode"].Value.ToString() + "'");
  103. //执行
  104. dh.ExecuteSql(sql.GetString(), "insert");
  105. check++;
  106. }
  107. }
  108. }
  109. MessageBox.Show(check + "条数据下地锁定成功");
  110. Thread.Sleep(500);
  111. Query_Click(null, null);
  112. }
  113. catch (Exception EX)
  114. {
  115. MessageBox.Show(EX.Message);
  116. }
  117. }
  118. private void Query_OnlineTraceBack_FormClosing(object sender, FormClosingEventArgs e)
  119. {
  120. dh.Dispose();
  121. }
  122. private void checkBox1_CheckedChanged(object sender, EventArgs e)
  123. {
  124. int count = SnInf.Rows.Count;
  125. for (int i = 0; i < count; i++)
  126. {
  127. DataGridViewCheckBoxCell checkCell = (DataGridViewCheckBoxCell)SnInf.Rows[i].Cells["choose1"];
  128. Boolean flag = Convert.ToBoolean(checkCell.Value);
  129. if (flag != checkBox1.Checked)
  130. {
  131. checkCell.Value = checkBox1.Checked;
  132. }
  133. else
  134. {
  135. continue;
  136. }
  137. }
  138. countcheck();
  139. }
  140. private void normalButton2_Click(object sender, EventArgs e)
  141. {
  142. }
  143. private void countcheck()
  144. {
  145. int checkedRowCount = 0;
  146. foreach (DataGridViewRow row in SnInf.Rows)
  147. {
  148. DataGridViewCheckBoxCell checkBoxCell = row.Cells["choose1"] as DataGridViewCheckBoxCell;
  149. if (checkBoxCell != null && Convert.ToBoolean(checkBoxCell.Value) == true)
  150. {
  151. checkedRowCount++;
  152. }
  153. }
  154. Count.Text = checkedRowCount.ToString();
  155. }
  156. private void ma_code_UserControlTextChanged(object sender, EventArgs e)
  157. {
  158. DataTable dt = (DataTable)dh.ExecuteSql(" select mcd_stepcode,mcd_stepname from MAKECRAFTDETAIL where mcd_macode = '" + ma_code.Text+"' order by mcd_detno asc ", "select");
  159. ms_stepcode.DisplayMember = "mcd_stepname";
  160. ms_stepcode.ValueMember = "mcd_stepcode";
  161. ms_stepcode.DataSource = dt;
  162. ms_stepcode.Text = "";
  163. }
  164. private void SnInf_CurrentCellDirtyStateChanged(object sender, EventArgs e)
  165. {
  166. if (SnInf.CurrentCell is DataGridViewCheckBoxCell)
  167. {
  168. SnInf.CommitEdit(DataGridViewDataErrorContexts.Commit);
  169. countcheck();
  170. // 执行你的操作,使用 checkedRows
  171. }
  172. }
  173. private void normalButton2_Click_1(object sender, EventArgs e)
  174. {
  175. //Data表示导出数据
  176. //Templet表示导出模板
  177. folderBrowserDialog1.Description = "选择导出的路径";
  178. DialogResult result = folderBrowserDialog1.ShowDialog();
  179. if (result == DialogResult.OK)
  180. {
  181. string FolderPath = folderBrowserDialog1.SelectedPath;
  182. ExcelHandler eh = new ExcelHandler();
  183. //DataTable dt = (DataTable)SnInf.DataSource;
  184. //导出Excel的时候返回一个文件名,用户选择是否打开
  185. string filePath = eh.ExportExcel(SnInf, FolderPath);
  186. //用户选择导出之后是否立即打开
  187. MessageBoxButtons messButton = MessageBoxButtons.YesNo;
  188. string openFile = MessageBox.Show(this.ParentForm, "是否打开文件" + filePath, "提示", messButton).ToString();
  189. if (openFile == "Yes")
  190. {
  191. System.Diagnostics.Process.Start(filePath);
  192. }
  193. }
  194. }
  195. }
  196. }