Query_SOP.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. using System;
  2. using System.IO;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.Net;
  6. using System.Collections.Generic;
  7. using System.Threading;
  8. using System.Data;
  9. using System.Drawing.Imaging;
  10. using System.Drawing;
  11. using UAS_MES_NEW.Entity;
  12. using UAS_MES_NEW.PublicMethod;
  13. using Aspose.Cells;
  14. using UAS_MES_NEW.DataOperate;
  15. using UAS_MES_NEW.PublicForm;
  16. using Aspose.Cells.Drawing;
  17. using Aspose.Cells.Rendering;
  18. using System.Web.Script.Serialization;
  19. using Seagull.BarTender.Print;
  20. namespace UAS_MES_NEW.Query
  21. {
  22. public partial class Query_SOP : Form
  23. {
  24. DataHelper dh;
  25. string usercode;
  26. string sourcecode;
  27. DataTable Dbfind;
  28. public Query_SOP()
  29. {
  30. usercode = "";
  31. sourcecode = "";
  32. InitializeComponent();
  33. }
  34. private void Form3_Load(object sender, EventArgs e)
  35. {
  36. CheckForIllegalCrossThreadCalls = false;
  37. ps_prodcode.TableName = "productsop";
  38. ps_prodcode.SelectField = "ps_code # 流水号,ps_prodcode # SOP编号";
  39. ps_prodcode.FormName = Name;
  40. ps_prodcode.DBTitle = "SOP查询";
  41. ps_prodcode.SetValueField = new string[] { "ps_code", "ps_prodcode" };
  42. ps_prodcode.Condition = "";
  43. ps_prodcode.DbChange += nr_rule_DBChange;
  44. pr_code.TableName = "product";
  45. pr_code.SelectField = "pr_code # 产品编号,pr_detail # 产品名称,pr_spec # 产品规格";
  46. pr_code.FormName = Name;
  47. pr_code.DBTitle = "物料查询";
  48. pr_code.Condition = "pr_code not like '%LX%'";
  49. pr_code.SetValueField = new string[] { "pr_code" };
  50. dh = SystemInf.dh;
  51. }
  52. private void nr_rule_DBChange(object sender, EventArgs e)
  53. {
  54. Dbfind = ps_prodcode.ReturnData;
  55. BaseUtil.SetFormValue(this.Controls, Dbfind);
  56. }
  57. void uploadfile()
  58. {
  59. if (FilePath.Text == "")
  60. {
  61. MessageBox.Show("文件不能为空!");
  62. return;
  63. }
  64. //if (pr_code.Text == "")
  65. //{
  66. // MessageBox.Show("产品编号不能为空!");
  67. // return;
  68. //}
  69. if (JPG.Checked)
  70. {
  71. ps_prodcode.Text = FilePath.Text.Substring(FilePath.Text.LastIndexOf(@"\") + 1).Replace(".xls", "").Replace(".xlsx", "");
  72. pr_code_Leave(new object(), new EventArgs());
  73. DataTable dt = (DataTable)dh.ExecuteSql("select * from productsop where ps_prodcode='" + ps_prodcode.Text + "' ", "select");
  74. if (dt.Rows.Count == 0)
  75. {
  76. string code = LogicHandler.GetPiInoutCode("ProductSOP", "1");
  77. ps_code.Text = code;
  78. if (VaildDate.Checked)
  79. {
  80. dh.ExecuteSql("insert into productsop(ps_id,ps_code,ps_prodcode,ps_indate,ps_inman,ps_status,ps_statuscode,ps_vailddate,ps_prcode)values(productsop_seq.nextval,'" + code + "','" + ps_prodcode.Text + "',sysdate,'" + User.UserName + "','在录入','ENTERING',to_date('" + DateCode.Value.ToString("yyyy-MM-dd") + "','yyyy-mm-dd'),'" + pr_code.Text + "')", "insert");
  81. }
  82. else
  83. {
  84. dh.ExecuteSql("insert into productsop(ps_id,ps_code,ps_prodcode,ps_indate,ps_inman,ps_status,ps_statuscode,ps_prcode)values(productsop_seq.nextval,'" + code + "','" + ps_prodcode.Text + "',sysdate,'" + User.UserName + "','在录入','ENTERING','" + pr_code.Text + "')", "insert");
  85. }
  86. }
  87. else
  88. {
  89. string ps_id = dt.Rows[0]["ps_id"].ToString();
  90. dh.ExecuteSql("delete from ProductSOPdetail where psd_psid='" + ps_id + "'", "delete");
  91. ps_prodcode.Text = dt.Rows[0]["ps_prodcode"].ToString();
  92. }
  93. Workbook workbook = new Workbook(FilePath.Text);
  94. List<Worksheet> list = new List<Worksheet>();
  95. List<string> filename = new List<string>();
  96. if (VaildDate.Checked)
  97. {
  98. dh.ExecuteSql("update ProductSOP set ps_attachsop='',ps_inman='" + User.UserName + "',ps_vailddate=to_date('" + DateCode.Value.ToString("yyyy-MM-dd") + "','yyyy-mm-dd') where ps_prodcode='" + ps_prodcode.Text + "'", "update");
  99. }
  100. else
  101. {
  102. dh.ExecuteSql("update ProductSOP set ps_attachsop='',ps_inman='" + User.UserName + "' where ps_prodcode='" + ps_prodcode.Text + "'", "update");
  103. }
  104. OperatResult.AppendText("一共Sheet: " + workbook.Worksheets.Count + "\n");
  105. for (int i = 0; i < workbook.Worksheets.Count; i++)
  106. {
  107. OperatResult.AppendText("正在解析Sheet" + workbook.Worksheets[i].Name + "\n");
  108. if (JPG.Checked)
  109. {
  110. try
  111. {
  112. if (!Directory.Exists(Application.StartupPath + @"\" + ps_prodcode.Text))
  113. {
  114. Directory.CreateDirectory(Application.StartupPath + @"\" + ps_prodcode.Text);
  115. }
  116. string path = Application.StartupPath + @"\" + ps_prodcode.Text + @"\";
  117. Worksheet she = workbook.Worksheets[i];
  118. // 获取原表的实际数据范围和最大列
  119. int totalRows = she.Cells.MaxDataRow;
  120. int lastColIndex = she.Cells.MaxDataColumn + 5;
  121. string lastColLetter = CellsHelper.ColumnIndexToName(lastColIndex);
  122. int rowSliceSize = int.Parse(RowCount.Value.ToString());
  123. int imageIndex = 1;
  124. // ========== 核心修改:手动计算总页数 ==========
  125. // 总页数 = 总行数 除以 每页行数,向上取整
  126. int totalPages = (int)Math.Ceiling((double)totalRows / rowSliceSize);
  127. // ============================================
  128. // 记录原表设置,循环结束后恢复,避免污染原文件
  129. string originalPrintArea = she.PageSetup.PrintArea;
  130. double originalLeftMargin = she.PageSetup.LeftMargin;
  131. double originalRightMargin = she.PageSetup.RightMargin;
  132. double originalTopMargin = she.PageSetup.TopMargin;
  133. double originalBottomMargin = she.PageSetup.BottomMargin;
  134. // 设置居中、无边距的打印模式,确保图片紧密贴合
  135. she.PageSetup.CenterHorizontally = true;
  136. she.PageSetup.CenterVertically = true;
  137. she.PageSetup.LeftMargin = 0;
  138. she.PageSetup.RightMargin = 0;
  139. she.PageSetup.TopMargin = 0;
  140. she.PageSetup.BottomMargin = 0;
  141. // 循环开始前先彻底清空原有页脚,防止残留格式干扰
  142. she.PageSetup.SetFooter(0, "");
  143. she.PageSetup.SetFooter(1, "");
  144. she.PageSetup.SetFooter(2, "");
  145. for (int startRow = 0; startRow < totalRows; startRow += rowSliceSize)
  146. {
  147. int endRow = Math.Min(startRow + rowSliceSize - 1, totalRows - 1);
  148. // 1. 动态设置原表的打印区域(模拟切片)
  149. if (endRow < rowSliceSize)
  150. {
  151. she.PageSetup.PrintArea = $"A{startRow + 1}:{lastColLetter}{rowSliceSize + 1}";
  152. }
  153. else
  154. {
  155. she.PageSetup.PrintArea = $"A{startRow + 1}:{lastColLetter}{endRow + 1}";
  156. }
  157. if (File.Exists(PrintPath.Text))
  158. {
  159. if (startRow == 0)
  160. {
  161. she.Pictures.Add(startRow + int.Parse(Y.Value.ToString()), int.Parse(X.Value.ToString()), PrintPath.Text);
  162. }
  163. else
  164. {
  165. she.Pictures.Add(startRow - 4 + int.Parse(Y.Value.ToString()), int.Parse(X.Value.ToString()), PrintPath.Text);
  166. }
  167. }
  168. // ========== 核心修改:手动写入硬编码页脚 ==========
  169. // 当前 page 是 imageIndex,总页数是我们刚才算的 totalPages
  170. string pageFooter = $"第 {imageIndex} 页 / 共 {totalPages} 页";
  171. // 直接写入页脚中间位置
  172. she.PageSetup.SetFooter(1, pageFooter);
  173. // ================================================
  174. // 2. 创建渲染选项
  175. ImageOrPrintOptions options = new ImageOrPrintOptions();
  176. options.ImageFormat = ImageFormat.Png;
  177. options.OnePagePerSheet = false;
  178. options.PrintingPage = PrintingPageType.Default;
  179. // 3. 渲染图片
  180. SheetRender sr = new SheetRender(she, options);
  181. Bitmap bitmap = sr.ToImage(0);
  182. // 4. 处理并保存图片
  183. string imagename = $"{she.Name}_{imageIndex}.png";
  184. string imagePath = Path.Combine(path, imagename);
  185. bitmap.Save(imagePath, ImageFormat.Png);
  186. bitmap.Dispose();
  187. //sr.Dispose(); // 如果旧版本这里报错,可以保留注释
  188. imageIndex++; // 这一行对应下一张图片的页码,放在这里即可
  189. OperatResult.AppendText("解析图片【" + imagePath + "】" + "\n");
  190. // 5. 上传与入库
  191. Dictionary<string, object> dic = new Dictionary<string, object>();
  192. dic.Add("em_name", "管理员");
  193. dic.Add("em_code", "ADMIN");
  194. dic.Add("caller", "ProductSOP");
  195. OperatResult.AppendText("上传文件【" + imagePath + "】\n");
  196. string fp_id = UploadFilesToRemoteUrl("https://mes.lihantech.cn/mes/MEScommon/uploadFiles.action?_noc=1", imagePath, dic);
  197. string ps_id = dh.getFieldDataByCondition("ProductSOP", "ps_id", "ps_prodcode='" + ps_prodcode.Text + "'").ToString();
  198. dh.ExecuteSql("insert into ProductSOPdetail(psd_id,psd_psid,psd_attach) select ProductSOPdetail_seq.nextval,ps_id,'" + imagename + ";" + fp_id + "' from ProductSOP where ps_prodcode='" + ps_prodcode.Text + "'", "insert");
  199. }
  200. // 恢复原表设置
  201. she.PageSetup.PrintArea = originalPrintArea;
  202. she.PageSetup.LeftMargin = originalLeftMargin;
  203. she.PageSetup.RightMargin = originalRightMargin;
  204. she.PageSetup.TopMargin = originalTopMargin;
  205. she.PageSetup.BottomMargin = originalBottomMargin;
  206. // 循环结束后彻底清空页脚,防止影响下次使用
  207. she.PageSetup.SetFooter(0, "");
  208. she.PageSetup.SetFooter(1, "");
  209. she.PageSetup.SetFooter(2, "");
  210. }
  211. catch (Exception ex)
  212. {
  213. OperatResult.AppendText(ex.Message + ex.StackTrace);
  214. }
  215. }
  216. }
  217. }
  218. else if (PDF.Checked)
  219. {
  220. ps_prodcode.Text = FilePath.Text.Substring(FilePath.Text.LastIndexOf(@"\") + 1).Replace(".pdf", "");
  221. pr_code_Leave(new object(), new EventArgs());
  222. DataTable dt = (DataTable)dh.ExecuteSql("select * from productsop where ps_prodcode='" + ps_prodcode.Text + "' ", "select");
  223. if (dt.Rows.Count == 0)
  224. {
  225. string code = LogicHandler.GetPiInoutCode("ProductSOP", "1");
  226. ps_code.Text = code;
  227. if (VaildDate.Checked)
  228. {
  229. dh.ExecuteSql("insert into productsop(ps_id,ps_code,ps_prodcode,ps_indate,ps_inman,ps_status,ps_statuscode,ps_vailddate)values(productsop_seq.nextval,'" + code + "','" + ps_prodcode.Text + "',sysdate,'" + User.UserName + "','在录入','ENTERING',to_date('" + DateCode.Value.ToString("yyyy-MM-dd") + "','yyyy-mm-dd'))", "insert");
  230. }
  231. else
  232. {
  233. dh.ExecuteSql("insert into productsop(ps_id,ps_code,ps_prodcode,ps_indate,ps_inman,ps_status,ps_statuscode)values(productsop_seq.nextval,'" + code + "','" + ps_prodcode.Text + "',sysdate,'" + User.UserName + "','在录入','ENTERING')", "insert");
  234. }
  235. }
  236. else
  237. {
  238. string psid = dt.Rows[0]["ps_id"].ToString();
  239. dh.ExecuteSql("delete from ProductSOPdetail where psd_psid='" + psid + "'", "delete");
  240. ps_prodcode.Text = dt.Rows[0]["ps_prodcode"].ToString();
  241. }
  242. if (VaildDate.Checked)
  243. {
  244. dh.ExecuteSql("update ProductSOP set ps_attachsop='',ps_inman='" + User.UserName + "',ps_vailddate=to_date('" + DateCode.Value.ToString("yyyy-MM-dd") + "','yyyy-mm-dd') where ps_prodcode='" + ps_prodcode.Text + "'", "update");
  245. }
  246. else
  247. {
  248. dh.ExecuteSql("update ProductSOP set ps_attachsop='',ps_inman='" + User.UserName + "' where ps_prodcode='" + ps_prodcode.Text + "'", "update");
  249. }
  250. Dictionary<string, object> dic = new Dictionary<string, object>();
  251. dic.Add("em_name", "管理员");
  252. dic.Add("em_code", "ADMIN");
  253. dic.Add("caller", "ProductSOP");
  254. OperatResult.AppendText("上传文件【" + ps_prodcode.Text + "" + "】\n");
  255. string fp_id = UploadFilesToRemoteUrl("https://mes.lihantech.cn/mes/MEScommon/uploadFiles.action?_noc=1", FilePath.Text, dic);
  256. string ps_id = dh.getFieldDataByCondition("ProductSOP", "ps_id", "ps_prodcode='" + ps_prodcode.Text + "'").ToString();
  257. dh.ExecuteSql("insert into ProductSOPdetail(psd_id,psd_psid,psd_attach) select ProductSOPdetail_seq.nextval,ps_id,'" + ps_prodcode.Text + ";" + fp_id + "' from ProductSOP where ps_prodcode='" + ps_prodcode.Text + "'", "insert");
  258. }
  259. }
  260. /// <summary>
  261. /// 请求上传图片到阿里云
  262. /// </summary>
  263. /// <param name="url">上传地址</param>
  264. /// <param name="filepath">本地文件路径</param>
  265. /// <param name="dic">上传的数据信息</param>
  266. /// <returns></returns>
  267. public string UploadFilesToRemoteUrl(string url1, string filepath, Dictionary<string, object> dic)
  268. {
  269. try
  270. {
  271. ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
  272. ServicePointManager.DefaultConnectionLimit = 50;
  273. string boundary = DateTime.Now.Ticks.ToString("x");
  274. byte[] boundarybytes = System.Text.Encoding.UTF8.GetBytes("--" + boundary + "\r\n");
  275. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url1);
  276. request.Method = "POST";
  277. request.Timeout = 10 * 10000;
  278. request.ContentType = "multipart/form-data; boundary=" + boundary;
  279. Stream rs = request.GetRequestStream();
  280. var endBoundaryBytes = Encoding.UTF8.GetBytes("--" + boundary + "--\r\n");
  281. string formdataTemplate = "Content-Disposition: form-data; name=\"{0}\"\r\n" + "\r\n" + "{1}" + "\r\n";
  282. if (dic != null)
  283. {
  284. foreach (string key in dic.Keys)
  285. {
  286. rs.Write(boundarybytes, 0, boundarybytes.Length);
  287. string formitem = string.Format(formdataTemplate, key, dic[key]);
  288. byte[] formitembytes = System.Text.Encoding.UTF8.GetBytes(formitem);
  289. rs.Write(formitembytes, 0, formitembytes.Length);
  290. }
  291. }
  292. string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\n\r\n";
  293. {
  294. rs.Write(boundarybytes, 0, boundarybytes.Length);
  295. var header = string.Format(headerTemplate, "file", Path.GetFileName(filepath));
  296. var headerbytes = System.Text.Encoding.UTF8.GetBytes(header);
  297. rs.Write(headerbytes, 0, headerbytes.Length);
  298. using (var fileStream = new FileStream(filepath, FileMode.Open, FileAccess.Read))
  299. {
  300. var buffer = new byte[1024];
  301. var bytesRead = 0;
  302. while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
  303. {
  304. rs.Write(buffer, 0, bytesRead);
  305. }
  306. }
  307. var cr = Encoding.UTF8.GetBytes("\r\n");
  308. rs.Write(cr, 0, cr.Length);
  309. }
  310. rs.Write(endBoundaryBytes, 0, endBoundaryBytes.Length);
  311. var response = request.GetResponse() as HttpWebResponse;
  312. StreamReader newReader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  313. string Content = newReader.ReadToEnd();
  314. Dictionary<string, object> dic1 = new Dictionary<string, object>();
  315. List<Dictionary<string, object>> dic2 = null;
  316. dic1 = BaseUtil.ToDictionary(Content);
  317. dic2 = dic1["data"] as List<Dictionary<string, object>>;
  318. string fp_id = "";
  319. if (dic2[0]["filepath"] != null)
  320. {
  321. fp_id = dic2[0]["filepath"].ToString();
  322. }
  323. if (response.StatusCode == HttpStatusCode.OK)
  324. {
  325. return fp_id;
  326. }
  327. }
  328. catch (Exception e)
  329. {
  330. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP", "上传失败", ps_prodcode.Text, "");
  331. Console.WriteLine(e.Message + e.StackTrace);
  332. }
  333. return "";
  334. }
  335. private void ChooseFile_Click(object sender, EventArgs e)
  336. {
  337. ChoosePath.Filter = "(*.xlsx)|*.xlsx|(*.xls)|*.xls|(*.pdf)|*.pdf";
  338. DialogResult result = ChoosePath.ShowDialog();
  339. if (result == DialogResult.OK)
  340. {
  341. FilePath.Text = ChoosePath.FileName;
  342. }
  343. }
  344. private void UploadSOP_Click(object sender, EventArgs e)
  345. {
  346. Thread thread = new Thread(uploadfile);
  347. SetLoadingWindow stw = new SetLoadingWindow(thread, "上传文件");
  348. stw.StartPosition = FormStartPosition.CenterScreen;
  349. stw.ShowDialog();
  350. if (JPG.Checked)
  351. {
  352. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP【图片格式】", "上传成功", ps_prodcode.Text, "");
  353. }
  354. else
  355. {
  356. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP【PDF格式】", "上传成功", ps_prodcode.Text, "");
  357. }
  358. }
  359. private void OperatResult_TextChanged(object sender, EventArgs e)
  360. {
  361. //OperatResult.SelectionStart = Text.Length;
  362. OperatResult.ScrollToCaret();
  363. }
  364. private void SendSop_Click(object sender, EventArgs e)
  365. {
  366. try
  367. {
  368. if (ps_prodcode.Text == "")
  369. {
  370. MessageBox.Show("线别和SOP文档不能为空");
  371. return;
  372. }
  373. if (SendDGV.Rows.Count > 0)
  374. {
  375. List<Dictionary<string, string>> listr = new List<Dictionary<string, string>>();
  376. JavaScriptSerializer jss = new JavaScriptSerializer();
  377. Dictionary<string, object> map1 = new Dictionary<string, object>();
  378. Dictionary<string, object> map = new Dictionary<string, object>();
  379. string path;
  380. string pathroot = dh.GetConfig("filePathUrl", "sys").ToString();
  381. dh.ExecuteSql("insert into soprelease(SR_ID, sr_pscode, SR_STATUS, SR_MACHINETYPE,sr_releaseman,sr_readman)" +
  382. "select soprelease_seq.nextval,'" + ps_code.Text + "',0,'" + ps_prodcode.Text + "','" + User.UserName + "',em_code from employee ", "insert");
  383. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播成功", ps_prodcode.Text, "");
  384. MessageBox.Show("文档[" + ps_prodcode.Text + "]下放成功");
  385. }
  386. else
  387. {
  388. MessageBox.Show("产品编号" + ps_prodcode.Text + "未维护SOP文档");
  389. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播失败,未维护SOP文档", ps_prodcode.Text, "");
  390. }
  391. }
  392. catch (Exception ex)
  393. {
  394. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播失败", ps_prodcode.Text, "");
  395. Console.WriteLine(ex.Message + ex.StackTrace);
  396. }
  397. }
  398. public string encryptBASE64(string key)
  399. {
  400. Console.WriteLine(key);
  401. byte[] bytes = Encoding.Default.GetBytes(key);
  402. return Convert.ToBase64String(bytes);
  403. }
  404. public static string EncodeBase64(string code_type, string code)
  405. {
  406. string encode = "";
  407. byte[] bytes = Encoding.GetEncoding(code_type).GetBytes(code);
  408. try
  409. {
  410. encode = Convert.ToBase64String(bytes);
  411. }
  412. catch
  413. {
  414. encode = code;
  415. }
  416. return encode;
  417. }
  418. private void pr_code_KeyDown(object sender, KeyEventArgs e)
  419. {
  420. if (e.KeyCode == Keys.Enter)
  421. {
  422. LoadPrCode();
  423. }
  424. }
  425. private BindingSource bs = new BindingSource(); // 类成员变量
  426. private void LoadPrCode()
  427. {
  428. DataTable dt = (DataTable)dh.ExecuteSql("select * from productsop where ps_prodcode='" + ps_prodcode.Text + "'", "select");
  429. if (dt.Rows.Count > 0)
  430. {
  431. string ps_id = dt.Rows[0]["ps_id"].ToString();
  432. dt = (DataTable)dh.ExecuteSql(@"select fp_name,fp_path,'' issend,psd_iskey
  433. from ProductSOPdetail
  434. left join filepath on FP_ID=substr(PSD_ATTACH,instr(PSD_ATTACH,';')+1)
  435. where psd_psid=" + ps_id, "select");
  436. if (dt.Rows.Count > 0)
  437. {
  438. // 在 UI 线程安全执行(如果已经在 UI 线程则直接调用)
  439. if (SendDGV.InvokeRequired)
  440. SendDGV.Invoke(new Action(() => BindData(dt)));
  441. else
  442. BindData(dt);
  443. }
  444. }
  445. }
  446. private void BindData(DataTable dt)
  447. {
  448. // 使用 BindingSource 避免直接置 null
  449. if (SendDGV.DataSource == null)
  450. {
  451. bs.DataSource = dt;
  452. SendDGV.DataSource = bs;
  453. }
  454. else
  455. {
  456. bs.DataSource = dt; // 直接替换内部数据,控件不会经历“无数据”状态
  457. }
  458. // 可选:刷新显示
  459. SendDGV.Refresh();
  460. }
  461. private void pr_code_Leave(object sender, EventArgs e)
  462. {
  463. //LoadPrCode();
  464. }
  465. bool AllChecked = false;
  466. private void ChooseALL_Click(object sender, EventArgs e)
  467. {
  468. if (AllChecked)
  469. {
  470. foreach (DataGridViewRow dr in SendDGV.Rows)
  471. dr.Cells[0].Value = false;
  472. AllChecked = false;
  473. }
  474. else
  475. {
  476. foreach (DataGridViewRow dr in SendDGV.Rows)
  477. dr.Cells[0].Value = true;
  478. AllChecked = true;
  479. }
  480. }
  481. private void ps_prodcode_UserControlTextChanged(object sender, EventArgs e)
  482. {
  483. LoadPrCode();
  484. }
  485. private void GetSOP_Click(object sender, EventArgs e)
  486. {
  487. LoadPrCode();
  488. }
  489. private void ChoosePrint_Click(object sender, EventArgs e)
  490. {
  491. ChoosePath.Filter = "(*.png)|*.png";
  492. DialogResult result = ChoosePath.ShowDialog();
  493. if (result == DialogResult.OK)
  494. {
  495. PrintPath.Text = ChoosePath.FileName;
  496. }
  497. }
  498. private void SendDGV_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
  499. {
  500. if (e.RowIndex < 0 || e.ColumnIndex < 0) return;
  501. }
  502. }
  503. }