Query_SOP.cs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  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. string originalPrintArea = she.PageSetup.PrintArea;
  126. double originalLeftMargin = she.PageSetup.LeftMargin;
  127. double originalRightMargin = she.PageSetup.RightMargin;
  128. double originalTopMargin = she.PageSetup.TopMargin;
  129. double originalBottomMargin = she.PageSetup.BottomMargin;
  130. // 设置居中、无边距的打印模式,确保图片紧密贴合
  131. she.PageSetup.CenterHorizontally = true;
  132. she.PageSetup.CenterVertically = true;
  133. she.PageSetup.LeftMargin = 0;
  134. she.PageSetup.RightMargin = 0;
  135. she.PageSetup.TopMargin = 0;
  136. she.PageSetup.BottomMargin = 0;
  137. for (int startRow = 0; startRow < totalRows; startRow += rowSliceSize)
  138. {
  139. int endRow = Math.Min(startRow + rowSliceSize - 1, totalRows - 1);
  140. // 1. 动态设置原表的打印区域(模拟切片)
  141. // 注意:这里直接使用原表渲染,虽然旧版本对图片的浮层处理有限,但这能最大程度保留图片
  142. Console.WriteLine($"A1:{lastColLetter}{totalRows}");
  143. Console.WriteLine($"A{startRow + 1}:{lastColLetter}{endRow + 1}");
  144. if (endRow < rowSliceSize)
  145. {
  146. she.PageSetup.PrintArea = $"A{startRow + 1}:{lastColLetter}{rowSliceSize + 1}";
  147. }
  148. else {
  149. she.PageSetup.PrintArea = $"A{startRow + 1}:{lastColLetter}{endRow + 1}";
  150. }
  151. if (File.Exists(PrintPath.Text))
  152. {
  153. if (startRow == 0)
  154. {
  155. she.Pictures.Add(startRow + int.Parse(Y.Value.ToString()), int.Parse(X.Value.ToString()), PrintPath.Text);
  156. }
  157. else
  158. {
  159. she.Pictures.Add(startRow - 4 + int.Parse(Y.Value.ToString()), int.Parse(X.Value.ToString()), PrintPath.Text);
  160. }
  161. }
  162. // 2. 创建渲染选项
  163. ImageOrPrintOptions options = new ImageOrPrintOptions();
  164. options.ImageFormat = ImageFormat.Png;
  165. options.OnePagePerSheet = true; // 强制在一页内输出,严格限制范围
  166. options.PrintingPage = PrintingPageType.Default; // 禁止忽略空白行列
  167. // 3. 渲染图片
  168. SheetRender sr = new SheetRender(she, options);
  169. Bitmap bitmap = sr.ToImage(0);
  170. // 4. 处理并保存图片
  171. string imagename = $"{she.Name}_{imageIndex}.png";
  172. string imagePath = Path.Combine(path, imagename);
  173. bitmap.Save(imagePath, ImageFormat.Png);
  174. // 释放资源,防止内存溢出
  175. bitmap.Dispose();
  176. //sr.Dispose();
  177. imageIndex++;
  178. OperatResult.AppendText("解析图片【" + imagePath + "】" + "\n");
  179. // 5. 上传与入库
  180. Dictionary<string, object> dic = new Dictionary<string, object>();
  181. dic.Add("em_name", "管理员");
  182. dic.Add("em_code", "ADMIN");
  183. dic.Add("caller", "ProductSOP");
  184. OperatResult.AppendText("上传文件【" + imagePath + "】\n");
  185. string fp_id = UploadFilesToRemoteUrl("https://mes.lihantech.cn/mes/MEScommon/uploadFiles.action?_noc=1", imagePath, dic);
  186. string ps_id = dh.getFieldDataByCondition("ProductSOP", "ps_id", "ps_prodcode='" + ps_prodcode.Text + "'").ToString();
  187. 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");
  188. }
  189. // 恢复原表设置
  190. she.PageSetup.PrintArea = originalPrintArea;
  191. she.PageSetup.LeftMargin = originalLeftMargin;
  192. she.PageSetup.RightMargin = originalRightMargin;
  193. she.PageSetup.TopMargin = originalTopMargin;
  194. she.PageSetup.BottomMargin = originalBottomMargin;
  195. }
  196. catch (Exception ex)
  197. {
  198. OperatResult.AppendText(ex.Message + ex.StackTrace);
  199. }
  200. }
  201. }
  202. }
  203. else if (PDF.Checked)
  204. {
  205. ps_prodcode.Text = FilePath.Text.Substring(FilePath.Text.LastIndexOf(@"\") + 1).Replace(".pdf", "");
  206. pr_code_Leave(new object(), new EventArgs());
  207. DataTable dt = (DataTable)dh.ExecuteSql("select * from productsop where ps_prodcode='" + ps_prodcode.Text + "' ", "select");
  208. if (dt.Rows.Count == 0)
  209. {
  210. string code = LogicHandler.GetPiInoutCode("ProductSOP", "1");
  211. ps_code.Text = code;
  212. if (VaildDate.Checked)
  213. {
  214. 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");
  215. }
  216. else
  217. {
  218. 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");
  219. }
  220. }
  221. else
  222. {
  223. string psid = dt.Rows[0]["ps_id"].ToString();
  224. dh.ExecuteSql("delete from ProductSOPdetail where psd_psid='" + psid + "'", "delete");
  225. ps_prodcode.Text = dt.Rows[0]["ps_prodcode"].ToString();
  226. }
  227. if (VaildDate.Checked)
  228. {
  229. 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");
  230. }
  231. else
  232. {
  233. dh.ExecuteSql("update ProductSOP set ps_attachsop='',ps_inman='" + User.UserName + "' where ps_prodcode='" + ps_prodcode.Text + "'", "update");
  234. }
  235. Dictionary<string, object> dic = new Dictionary<string, object>();
  236. dic.Add("em_name", "管理员");
  237. dic.Add("em_code", "ADMIN");
  238. dic.Add("caller", "ProductSOP");
  239. OperatResult.AppendText("上传文件【" + ps_prodcode.Text + "" + "】\n");
  240. string fp_id = UploadFilesToRemoteUrl("https://mes.lihantech.cn/mes/MEScommon/uploadFiles.action?_noc=1", FilePath.Text, dic);
  241. string ps_id = dh.getFieldDataByCondition("ProductSOP", "ps_id", "ps_prodcode='" + ps_prodcode.Text + "'").ToString();
  242. 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");
  243. }
  244. }
  245. /// <summary>
  246. /// 请求上传图片到阿里云
  247. /// </summary>
  248. /// <param name="url">上传地址</param>
  249. /// <param name="filepath">本地文件路径</param>
  250. /// <param name="dic">上传的数据信息</param>
  251. /// <returns></returns>
  252. public string UploadFilesToRemoteUrl(string url1, string filepath, Dictionary<string, object> dic)
  253. {
  254. try
  255. {
  256. ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
  257. ServicePointManager.DefaultConnectionLimit = 50;
  258. string boundary = DateTime.Now.Ticks.ToString("x");
  259. byte[] boundarybytes = System.Text.Encoding.UTF8.GetBytes("--" + boundary + "\r\n");
  260. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url1);
  261. request.Method = "POST";
  262. request.Timeout = 10 * 10000;
  263. request.ContentType = "multipart/form-data; boundary=" + boundary;
  264. Stream rs = request.GetRequestStream();
  265. var endBoundaryBytes = Encoding.UTF8.GetBytes("--" + boundary + "--\r\n");
  266. string formdataTemplate = "Content-Disposition: form-data; name=\"{0}\"\r\n" + "\r\n" + "{1}" + "\r\n";
  267. if (dic != null)
  268. {
  269. foreach (string key in dic.Keys)
  270. {
  271. rs.Write(boundarybytes, 0, boundarybytes.Length);
  272. string formitem = string.Format(formdataTemplate, key, dic[key]);
  273. byte[] formitembytes = System.Text.Encoding.UTF8.GetBytes(formitem);
  274. rs.Write(formitembytes, 0, formitembytes.Length);
  275. }
  276. }
  277. string headerTemplate = "Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"\r\n\r\n";
  278. {
  279. rs.Write(boundarybytes, 0, boundarybytes.Length);
  280. var header = string.Format(headerTemplate, "file", Path.GetFileName(filepath));
  281. var headerbytes = System.Text.Encoding.UTF8.GetBytes(header);
  282. rs.Write(headerbytes, 0, headerbytes.Length);
  283. using (var fileStream = new FileStream(filepath, FileMode.Open, FileAccess.Read))
  284. {
  285. var buffer = new byte[1024];
  286. var bytesRead = 0;
  287. while ((bytesRead = fileStream.Read(buffer, 0, buffer.Length)) != 0)
  288. {
  289. rs.Write(buffer, 0, bytesRead);
  290. }
  291. }
  292. var cr = Encoding.UTF8.GetBytes("\r\n");
  293. rs.Write(cr, 0, cr.Length);
  294. }
  295. rs.Write(endBoundaryBytes, 0, endBoundaryBytes.Length);
  296. var response = request.GetResponse() as HttpWebResponse;
  297. StreamReader newReader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
  298. string Content = newReader.ReadToEnd();
  299. Dictionary<string, object> dic1 = new Dictionary<string, object>();
  300. List<Dictionary<string, object>> dic2 = null;
  301. dic1 = BaseUtil.ToDictionary(Content);
  302. dic2 = dic1["data"] as List<Dictionary<string, object>>;
  303. string fp_id = "";
  304. if (dic2[0]["filepath"] != null)
  305. {
  306. fp_id = dic2[0]["filepath"].ToString();
  307. }
  308. if (response.StatusCode == HttpStatusCode.OK)
  309. {
  310. return fp_id;
  311. }
  312. }
  313. catch (Exception e)
  314. {
  315. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP", "上传失败", ps_prodcode.Text, "");
  316. Console.WriteLine(e.Message + e.StackTrace);
  317. }
  318. return "";
  319. }
  320. private void ChooseFile_Click(object sender, EventArgs e)
  321. {
  322. ChoosePath.Filter = "(*.xlsx)|*.xlsx|(*.xls)|*.xls|(*.pdf)|*.pdf";
  323. DialogResult result = ChoosePath.ShowDialog();
  324. if (result == DialogResult.OK)
  325. {
  326. FilePath.Text = ChoosePath.FileName;
  327. }
  328. }
  329. private void UploadSOP_Click(object sender, EventArgs e)
  330. {
  331. Thread thread = new Thread(uploadfile);
  332. SetLoadingWindow stw = new SetLoadingWindow(thread, "上传文件");
  333. stw.StartPosition = FormStartPosition.CenterScreen;
  334. stw.ShowDialog();
  335. if (JPG.Checked)
  336. {
  337. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP【图片格式】", "上传成功", ps_prodcode.Text, "");
  338. }
  339. else
  340. {
  341. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "上传SOP【PDF格式】", "上传成功", ps_prodcode.Text, "");
  342. }
  343. }
  344. private void OperatResult_TextChanged(object sender, EventArgs e)
  345. {
  346. //OperatResult.SelectionStart = Text.Length;
  347. OperatResult.ScrollToCaret();
  348. }
  349. private void SendSop_Click(object sender, EventArgs e)
  350. {
  351. try
  352. {
  353. if (ps_prodcode.Text == "")
  354. {
  355. MessageBox.Show("线别和SOP文档不能为空");
  356. return;
  357. }
  358. if (SendDGV.Rows.Count > 0)
  359. {
  360. List<Dictionary<string, string>> listr = new List<Dictionary<string, string>>();
  361. JavaScriptSerializer jss = new JavaScriptSerializer();
  362. Dictionary<string, object> map1 = new Dictionary<string, object>();
  363. Dictionary<string, object> map = new Dictionary<string, object>();
  364. string path;
  365. string pathroot = dh.GetConfig("filePathUrl", "sys").ToString();
  366. dh.ExecuteSql("insert into soprelease(SR_ID, sr_pscode, SR_STATUS, SR_MACHINETYPE,sr_releaseman,sr_readman)" +
  367. "select soprelease_seq.nextval,'" + ps_code.Text + "',0,'" + ps_prodcode.Text + "','" + User.UserName + "',em_code from employee ", "insert");
  368. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播成功", ps_prodcode.Text, "");
  369. MessageBox.Show("文档[" + ps_prodcode.Text + "]下放成功");
  370. }
  371. else
  372. {
  373. MessageBox.Show("产品编号" + ps_prodcode.Text + "未维护SOP文档");
  374. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播失败,未维护SOP文档", ps_prodcode.Text, "");
  375. }
  376. }
  377. catch (Exception ex)
  378. {
  379. LogicHandler.DoCommandLog("SOP", usercode, "", "", sourcecode, "广播SOP", "广播失败", ps_prodcode.Text, "");
  380. Console.WriteLine(ex.Message + ex.StackTrace);
  381. }
  382. }
  383. public string encryptBASE64(string key)
  384. {
  385. Console.WriteLine(key);
  386. byte[] bytes = Encoding.Default.GetBytes(key);
  387. return Convert.ToBase64String(bytes);
  388. }
  389. public static string EncodeBase64(string code_type, string code)
  390. {
  391. string encode = "";
  392. byte[] bytes = Encoding.GetEncoding(code_type).GetBytes(code);
  393. try
  394. {
  395. encode = Convert.ToBase64String(bytes);
  396. }
  397. catch
  398. {
  399. encode = code;
  400. }
  401. return encode;
  402. }
  403. private void pr_code_KeyDown(object sender, KeyEventArgs e)
  404. {
  405. if (e.KeyCode == Keys.Enter)
  406. {
  407. LoadPrCode();
  408. }
  409. }
  410. private BindingSource bs = new BindingSource(); // 类成员变量
  411. private void LoadPrCode()
  412. {
  413. DataTable dt = (DataTable)dh.ExecuteSql("select * from productsop where ps_prodcode='" + ps_prodcode.Text + "'", "select");
  414. if (dt.Rows.Count > 0)
  415. {
  416. string ps_id = dt.Rows[0]["ps_id"].ToString();
  417. dt = (DataTable)dh.ExecuteSql(@"select fp_name,fp_path,'' issend,psd_iskey
  418. from ProductSOPdetail
  419. left join filepath on FP_ID=substr(PSD_ATTACH,instr(PSD_ATTACH,';')+1)
  420. where psd_psid=" + ps_id, "select");
  421. if (dt.Rows.Count > 0)
  422. {
  423. // 在 UI 线程安全执行(如果已经在 UI 线程则直接调用)
  424. if (SendDGV.InvokeRequired)
  425. SendDGV.Invoke(new Action(() => BindData(dt)));
  426. else
  427. BindData(dt);
  428. }
  429. }
  430. }
  431. private void BindData(DataTable dt)
  432. {
  433. // 使用 BindingSource 避免直接置 null
  434. if (SendDGV.DataSource == null)
  435. {
  436. bs.DataSource = dt;
  437. SendDGV.DataSource = bs;
  438. }
  439. else
  440. {
  441. bs.DataSource = dt; // 直接替换内部数据,控件不会经历“无数据”状态
  442. }
  443. // 可选:刷新显示
  444. SendDGV.Refresh();
  445. }
  446. private void pr_code_Leave(object sender, EventArgs e)
  447. {
  448. //LoadPrCode();
  449. }
  450. bool AllChecked = false;
  451. private void ChooseALL_Click(object sender, EventArgs e)
  452. {
  453. if (AllChecked)
  454. {
  455. foreach (DataGridViewRow dr in SendDGV.Rows)
  456. dr.Cells[0].Value = false;
  457. AllChecked = false;
  458. }
  459. else
  460. {
  461. foreach (DataGridViewRow dr in SendDGV.Rows)
  462. dr.Cells[0].Value = true;
  463. AllChecked = true;
  464. }
  465. }
  466. private void ps_prodcode_UserControlTextChanged(object sender, EventArgs e)
  467. {
  468. LoadPrCode();
  469. }
  470. private void GetSOP_Click(object sender, EventArgs e)
  471. {
  472. LoadPrCode();
  473. }
  474. private void ChoosePrint_Click(object sender, EventArgs e)
  475. {
  476. ChoosePath.Filter = "(*.png)|*.png";
  477. DialogResult result = ChoosePath.ShowDialog();
  478. if (result == DialogResult.OK)
  479. {
  480. PrintPath.Text = ChoosePath.FileName;
  481. }
  482. }
  483. private void SendDGV_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
  484. {
  485. if (e.RowIndex < 0 || e.ColumnIndex < 0) return;
  486. }
  487. }
  488. }