Query_ExeProgress.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. using DevComponents.DotNetBar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. using UAS_MES_NEW.DataOperate;
  12. using UAS_MES_NEW.Entity;
  13. using UAS_MES_NEW.PublicMethod;
  14. namespace UAS_MES_NEW.Query
  15. {
  16. public partial class Query_ExeProgress : Form
  17. {
  18. DataHelper dh;
  19. LogStringBuilder sql = new LogStringBuilder();
  20. //经过的步骤
  21. string PastStep = "";
  22. //经过的步骤
  23. string nextStepCode = "";
  24. //序列号对应抽检批
  25. string checkno = "";
  26. //拆分后的经过的步骤
  27. Dictionary<int, string> Step;
  28. Dictionary<int, string> StepName;
  29. List<Brush> PaintColor = new List<Brush>();
  30. //屏幕高度
  31. int ScreenWidth;
  32. //屏幕宽度
  33. int ScreenHeight;
  34. DataTable dt;
  35. DataTable ms_id;//记录ms_id
  36. DataTable ListA;//记录数据的当前序列号和之前序列号
  37. AutoSizeFormClass asc = new AutoSizeFormClass();
  38. bool Loadad = false;
  39. public Query_ExeProgress()
  40. {
  41. InitializeComponent();
  42. }
  43. private void Query_ExeProgress_Load(object sender, EventArgs e)
  44. {
  45. dh = SystemInf.dh;
  46. ScreenWidth = this.Width;
  47. ScreenHeight = this.Height;
  48. asc.controllInitializeSize(this);
  49. sn_code.Focus();
  50. DoubleBuffered = true;
  51. }
  52. private void Query_ExeProgress_SizeChanged(object sender, EventArgs e)
  53. {
  54. //asc.controlAutoSize(this);
  55. }
  56. private void sn_code_KeyDown(object sender, KeyEventArgs e)
  57. {
  58. if (e.KeyCode == Keys.Enter)
  59. {
  60. string sncode = sn_code.Text;
  61. dt = (DataTable)dh.ExecuteSql("select cm_sncode from craftmaterial where cm_barcode='" + sn_code.Text + "' and nvl(cm_status,0)=0", "select");
  62. if (dt.Rows.Count > 0)
  63. {
  64. sn_code.Text = dt.Rows[0]["cm_sncode"].ToString();
  65. }
  66. ms_id = (DataTable)dh.ExecuteSql("select beforesn,sn from makesnrelation where beforesn='" + sn_code.Text + "' or sn='" + sn_code.Text + "'", "select");
  67. if (ms_id.Rows.Count > 0)
  68. {
  69. //说明有过转号
  70. ms_id = (DataTable)dh.ExecuteSql("select ms_id,ms_makecode,ms_firstsn,ms_checkno from makeserial where ms_sncode='" + ms_id.Rows[0]["beforesn"].ToString() + "' or ms_sncode='" + ms_id.Rows[0]["sn"].ToString() + "' order by ms_id", "select");
  71. }
  72. else
  73. {
  74. //没有过转号
  75. ms_id = (DataTable)dh.ExecuteSql("select ms_id,ms_makecode,ms_firstsn,ms_checkno from makeserial where ms_sncode='" + sn_code.Text + "' order by ms_id", "select");
  76. }
  77. if (ms_id.Rows.Count == 0)
  78. {
  79. //无值则提示
  80. MessageBox.Show("序列号" + sn_code.Text + "不存在");
  81. return;
  82. }
  83. StringBuilder ms_ids = new StringBuilder();//存所有的ms_id
  84. //设置界面工单号
  85. ma_code.Text = ms_id.Rows[ms_id.Rows.Count - 1]["ms_makecode"].ToString();
  86. ms_checkno.Text = ms_id.Rows[ms_id.Rows.Count - 1]["ms_checkno"].ToString();
  87. int idCount = ms_id.Rows.Count;
  88. for (int i = 0; i < idCount; i++)
  89. {
  90. ms_ids.Append("'" + ms_id.Rows[i]["ms_id"].ToString() + "',");
  91. }
  92. ListA = (DataTable)dh.ExecuteSql("select ms_beforesn,ms_sncode,ms_firstsn,ms_makecode from makeserial where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ")", "select");
  93. dt = (DataTable)dh.ExecuteSql("select ms_status,ms_nextstepcode,ms_paststep,ms_stepcode,ms_checkno,NVL(ms_ifrework, 0) ms_ifrework,NVL(ms_reworkstatus, 0) ms_reworkstatus from makeserial where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ") order by ms_id", "select");
  94. if (dt.Rows.Count > 0)
  95. {
  96. if (Step != null && Step.Count > 0)
  97. {
  98. Step.Clear();
  99. SerialPanel.Controls.Clear();
  100. PaintColor.Clear();
  101. }
  102. string ifRework = dt.Rows[idCount - 1]["ms_ifrework"].ToString();
  103. //执行过的步骤
  104. PastStep = dt.Rows[idCount - 1]["ms_paststep"].ToString();
  105. //下一步骤
  106. nextStepCode = dt.Rows[idCount - 1]["ms_nextstepcode"].ToString();
  107. //序列号所属抽检批
  108. checkno = dt.Rows[idCount - 1]["ms_checkno"].ToString();
  109. //如果为不良的时候
  110. string BadStep = "";
  111. string RejectStep = "";
  112. string currentStep = "";
  113. //先判断是否是返工的
  114. if (ifRework != "0")
  115. {
  116. //是返工的
  117. if (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3")
  118. {
  119. BadStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  120. }
  121. else if (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "4")
  122. {
  123. RejectStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  124. }
  125. }
  126. else
  127. {
  128. //不是返工的
  129. if (dt.Rows[idCount - 1]["ms_status"].ToString() == "3")
  130. {
  131. BadStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  132. }
  133. else if (dt.Rows[idCount - 1]["ms_status"].ToString() == "4")
  134. {
  135. RejectStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  136. }
  137. }
  138. currentStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  139. bool flag = false;//记录返工单开始就是不良的情况
  140. //如果只有一个单
  141. if (idCount == 1)
  142. {
  143. //添加开始节点绿色,除了返工单
  144. if (BadStep == "" && ((dt.Rows[idCount - 1]["ms_status"].ToString() == "3" && ifRework == "0") || (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3" && ifRework == "-1")))
  145. {
  146. PaintColor.Add(Brushes.Red);
  147. }
  148. else
  149. {
  150. PaintColor.Add(Brushes.Green);
  151. }
  152. }
  153. else//有至少两个工单,之前的工单肯定是已经完工的
  154. {
  155. PaintColor.Add(Brushes.Green);
  156. if (BadStep == "" && ((dt.Rows[idCount - 1]["ms_status"].ToString() == "3" && ifRework == "0") || (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3" && ifRework == "-1")))
  157. {
  158. //单独记录返工前oqc判不良
  159. flag = true;
  160. }
  161. }
  162. //查询执行过的步骤
  163. sql.Clear();
  164. sql.Append("select CD_DETNO,CD_STEPCODE,cd_ifoqc,ms_makecode,ms_id,cd_stepname from craft left join craftdetail on cd_crid = cr_id left join makeserial ");
  165. sql.Append("on ms_craftcode=cr_code and ms_prodcode=cr_prodcode where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ") order by ms_id,cd_detno");
  166. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  167. Step = new Dictionary<int, string>();
  168. StepName = new Dictionary<int, string>();
  169. for (int i = 0; i < dt.Rows.Count + 2; i++)
  170. {
  171. if (i == 0)
  172. {
  173. Step.Add(i, "开始");
  174. StepName.Add(i, "开始");
  175. }
  176. else if (i == dt.Rows.Count + 1)
  177. {
  178. Step.Add(i, "结束");
  179. StepName.Add(i, "结束");
  180. }
  181. else
  182. {
  183. Step.Add(i, dt.Rows[i - 1]["CD_STEPCODE"].ToString());
  184. StepName.Add(i, dt.Rows[i - 1]["cd_stepname"].ToString());
  185. }
  186. }
  187. //添加中间节点
  188. bool passed = true;
  189. int index = 0;
  190. for (int i = 0; i < dt.Rows.Count; i++)
  191. {
  192. //正在生产的途程才算
  193. if (dt.Rows[i]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString())
  194. {
  195. if (nextStepCode == dt.Rows[i]["CD_STEPCODE"].ToString())
  196. {
  197. index = i;
  198. }
  199. }
  200. }
  201. for (int i = 0; i < dt.Rows.Count; i++)
  202. {
  203. //只考虑正在生产的途程,之前工单的途程工序必定为绿色完工
  204. if (dt.Rows[i]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString())
  205. {
  206. ////下一步不在途程中,不良或者报废或者完工
  207. if (nextStepCode == "" || nextStepCode == " ")
  208. {
  209. //返工单
  210. if (currentStep == "")
  211. {
  212. passed = false;
  213. }
  214. //找到不良步骤
  215. if (BadStep == dt.Rows[i]["CD_STEPCODE"].ToString())
  216. {
  217. PaintColor.Add(Brushes.Red);
  218. //是不良品,后面就不执行
  219. passed = false;
  220. }
  221. //找到报废步骤
  222. else if (PastStep.Contains(dt.Rows[i]["CD_STEPCODE"].ToString() + "," + RejectStep) && RejectStep != "")
  223. {
  224. PaintColor.Add(Brushes.Black);
  225. //是报废品,后面就不执行
  226. passed = false;
  227. }
  228. else
  229. {
  230. //通过加绿色
  231. if (PastStep.Contains(dt.Rows[i]["CD_STEPCODE"].ToString()))
  232. {
  233. PaintColor.Add(Brushes.Green);
  234. }
  235. //不通过加白色
  236. else
  237. {
  238. PaintColor.Add(Brushes.White);
  239. }
  240. }
  241. }
  242. ////序列号下一步不为空
  243. else
  244. {
  245. /////SN下一步是否在途程中,是则标记
  246. //找到下一步
  247. if (i < index)
  248. {
  249. //已执行
  250. //判断是否为OQC工序
  251. //if (dt.Rows[i]["cd_ifoqc"].ToString() == "-1")
  252. //{
  253. // string oqcpass = dh.getFieldDataByCondition("oqcbatch", "ob_status", "ob_checkno = '" + checkno + "'").ToString();
  254. // if (oqcpass == "OK")
  255. // {
  256. // PaintColor.Add(Brushes.Green);
  257. // }
  258. // else
  259. // {
  260. // PaintColor.Add(Brushes.White);
  261. // }
  262. //}
  263. //else
  264. PaintColor.Add(Brushes.Green);
  265. }
  266. else
  267. {
  268. //未执行
  269. PaintColor.Add(Brushes.White);
  270. }
  271. }
  272. }
  273. else
  274. {
  275. //就是之前生产的途程,为绿色,除了返工
  276. if (flag && (dt.Rows[i + 1]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString()))
  277. {
  278. PaintColor.Add(Brushes.Red);
  279. }
  280. else
  281. {
  282. PaintColor.Add(Brushes.Green);
  283. }
  284. }
  285. }
  286. if (ifRework != "0")
  287. {
  288. //完工添加绿色,未完工添加白色
  289. if (dh.CheckExist("Makeserial", "ms_id='" + ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"] + "' and ms_reworkstatus='2'"))
  290. PaintColor.Add(Brushes.Green);
  291. else
  292. PaintColor.Add(Brushes.White);
  293. }
  294. else
  295. {
  296. //完工添加绿色,未完工添加白色
  297. if (dh.CheckExist("Makeserial", "ms_id='" + ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"] + "' and ms_status='2'"))
  298. PaintColor.Add(Brushes.Green);
  299. else
  300. PaintColor.Add(Brushes.White);
  301. }
  302. Refresh();
  303. SerialPanel.Refresh();
  304. StringBuilder mp_sncodes = new StringBuilder();
  305. StringBuilder makecodes = new StringBuilder();
  306. //拼接序列号的和工单号的
  307. for (int i = 0; i < ListA.Rows.Count; i++)
  308. {
  309. //sql mp_sncode
  310. mp_sncodes.Append("'" + ListA.Rows[i]["ms_sncode"].ToString() + "'," + (ListA.Rows[i]["ms_firstsn"].ToString() == "" ? "" : (" '" + ListA.Rows[i]["ms_firstsn"].ToString() + "',")));
  311. //sql ma_code
  312. makecodes.Append("'" + ListA.Rows[i]["ms_makecode"].ToString() + "',");
  313. }
  314. sql.Clear();
  315. sql.Append("select MBR_BRNAME||' '||MBR_SOLUTIONNAME||' '|| MBR_REMARK MBR_BRNAME,MP_RESULT,MP_SNCHECKNO,mp_makecode,ma_prodcode,std_class,sc_linecode,ma_craftcode,mp_sourcecode,mp_sncode,");
  316. sql.Append("MB_BADREMARK mb_badcode,to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')mp_indate,mp_inman,em_name from makeprocess left join make on mp_makecode=ma_code left join employee on mp_inman = em_code left join source on ");
  317. sql.Append("mp_sourcecode=sc_code left join STEPTESTDETAIL on std_sn=mp_sncode and to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')=to_char(STD_INDATE,'yyyy-mm-dd hh24:mi:ss')" +
  318. "left join (select max(mb_id)mb_id,wm_concat(distinct mb_badcode||' '||MB_BADNAME)||" +
  319. "' '||wm_concat(distinct MB_BADREMARK) MB_BADREMARK,mb_sncode,to_char(mb_indate,'yyyy-mm-dd hh24:mi:ss')mb_indate from makebad group by mb_sncode,to_char(mb_indate,'yyyy-mm-dd hh24:mi:ss') ) on mb_sncode=mp_sncode and to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')=mb_indate " +
  320. "left join MAKEBADREASON on mbr_mbid=mb_id where mp_sncode in (" + mp_sncodes.ToString().Substring(0, mp_sncodes.ToString().Length - 1) + ") and ma_code in (" + makecodes.ToString().Substring(0, makecodes.ToString().Length - 1) + ") order by mp_indate");
  321. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  322. BaseUtil.FillDgvWithDataTable(CraftInfDgv, dt);
  323. sql.Clear();
  324. sql.Append("select cm_barcode,cm_fsoncode,cm_sncode,cm_indate,cm_inman," +
  325. "case when cm_status=0 then '上线' else '已拆解' end cm_status from craftmaterial where cm_sncode='" + sncode + "'" +
  326. "union " +
  327. "select cm_barcode,cm_fsoncode,cm_sncode,cm_indate,cm_inman," +
  328. "case when cm_status=0 then '上线' else '已拆解' end cm_status from craftmaterial where cm_barcode='" + sncode + "'");
  329. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  330. if (dt.Rows.Count > 0)
  331. {
  332. BaseUtil.FillDgvWithDataTable(CraftMaterial, dt);
  333. }
  334. else
  335. {
  336. sql.Clear();
  337. sql.Append("select cm_barcode,cm_fsoncode,cm_sncode,cm_indate,cm_inman," +
  338. "case when cm_status=0 then '上线' else '已拆解' end cm_status from craftmaterial where cm_barcode='" + sn_code.Text + "'");
  339. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  340. BaseUtil.FillDgvWithDataTable(CraftMaterial, dt);
  341. }
  342. }
  343. else MessageBox.Show("序列号" + sn_code.Text + "不存在");
  344. }
  345. }
  346. private void SerialPanel_Paint(object sender, PaintEventArgs e)
  347. {
  348. if (Step != null)
  349. {
  350. //设置一行五个展示数量
  351. int RectangleCountEachRow = 5;
  352. int x = 40;
  353. int y = SerialPanel.Height / 10;
  354. int CurrentIndex = 0;
  355. //根据记录的数量判断行数
  356. int RowCount = (Step.Count % RectangleCountEachRow) == 0 ? (Step.Count / RectangleCountEachRow) : (Step.Count / RectangleCountEachRow) + 1;
  357. //每行的循环
  358. for (int i = 1; i <= RowCount; i++)
  359. {
  360. for (int j = CurrentIndex; j < RectangleCountEachRow * i; j++)
  361. {
  362. //创建画板
  363. Graphics g = e.Graphics;
  364. //途程节点的矩形
  365. Rectangle r;
  366. if (Step[j].Contains("开始") || Step[j].Contains("结束"))
  367. {
  368. r = new Rectangle(0, 0, 40, 40);
  369. }
  370. else
  371. r = new Rectangle();
  372. r.Width = SerialPanel.Width / 10;
  373. r.Height = SerialPanel.Height / 8;
  374. //画箭头的Pen
  375. Pen p = new Pen(Color.CadetBlue, 15);
  376. p.StartCap = LineCap.Round;
  377. p.EndCap = LineCap.ArrowAnchor;
  378. //方块内的信息
  379. Label Param = new Label();
  380. Param.Text = j + " " + StepName[j];
  381. Param.Name = j + Step[j] + "_label";
  382. Param.AutoSize = true;
  383. Param.Margin = new System.Windows.Forms.Padding(0, 0, 0, 0);
  384. Param.Anchor = AnchorStyles.Left;
  385. Param.Anchor = AnchorStyles.Top;
  386. //获取param的宽度和高度
  387. Graphics graphics = Graphics.FromHwnd(Param.Handle);
  388. SizeF size = graphics.MeasureString(Param.Text, Param.Font);
  389. //设定param文本框的位置
  390. //Param.Location = new Point(x + r.Width / 14 * RectangleCountEachRow, y + r.Height / 10 * 4);
  391. Param.Location = new Point(SerialPanel.AutoScrollPosition.X + x + (int)(r.Width - size.Width) / 2, SerialPanel.AutoScrollPosition.Y + y + (int)(r.Height - size.Height) / 2);
  392. graphics.Dispose();
  393. //如果在奇数行
  394. if (i % 2 != 0)
  395. {
  396. r.Location = new Point(SerialPanel.AutoScrollPosition.X + x, SerialPanel.AutoScrollPosition.Y + y);
  397. g.FillRectangle(PaintColor[j], r);
  398. //填充方块内的信息
  399. if (SerialPanel.Controls[Param.Name] == null)
  400. SerialPanel.Controls.Add(Param);
  401. if (j + 1 == Step.Count)
  402. break;
  403. //画箭头
  404. //如果是一行中的箭头
  405. if (j + 1 < RectangleCountEachRow * i)
  406. {
  407. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + x + r.Width + 10, SerialPanel.AutoScrollPosition.Y + y + r.Height / 2, SerialPanel.AutoScrollPosition.X + x + ScreenWidth / (RectangleCountEachRow), SerialPanel.AutoScrollPosition.Y + y + r.Height / 2);
  408. x += ScreenWidth / RectangleCountEachRow;
  409. }
  410. //如果是行的最后一个的箭头
  411. else if (j + 1 == RectangleCountEachRow * i)
  412. {
  413. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + x + r.Width / 2, SerialPanel.AutoScrollPosition.Y + y + r.Height + 10, SerialPanel.AutoScrollPosition.X + x + r.Width / 2, SerialPanel.AutoScrollPosition.Y + y + r.Height + r.Height);
  414. y = y + r.Height + r.Height;
  415. }
  416. }
  417. //如果在偶数行
  418. else
  419. {
  420. r.Location = new Point(SerialPanel.AutoScrollPosition.X + x, SerialPanel.AutoScrollPosition.Y + y);
  421. g.FillRectangle(PaintColor[j], r);
  422. //填充文字信息
  423. //存在这个名称的则不进行添加
  424. if (SerialPanel.Controls[Param.Name] == null)
  425. {
  426. SerialPanel.Controls.Add(Param);
  427. }
  428. //如果最后一个的画则直接Break,不用画箭头了
  429. if (j + 1 == Step.Count)
  430. {
  431. break;
  432. }
  433. //如果不是本行的最后一个画横向的箭头
  434. if (j + 1 < RectangleCountEachRow * i)
  435. {
  436. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + (x - 10), SerialPanel.AutoScrollPosition.Y + (y + r.Height / 2), SerialPanel.AutoScrollPosition.X + (x - ScreenWidth / RectangleCountEachRow + r.Width), SerialPanel.AutoScrollPosition.Y + (y + r.Height / 2));
  437. x -= ScreenWidth / RectangleCountEachRow;
  438. }
  439. //如果是最后一个画纵向的箭头
  440. else if (j + 1 == RectangleCountEachRow * i)
  441. {
  442. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + (x + r.Width / 2), SerialPanel.AutoScrollPosition.Y + (y + r.Height + 10), SerialPanel.AutoScrollPosition.X + (x + r.Width / 2), SerialPanel.AutoScrollPosition.Y + (y + r.Height + r.Height));
  443. y = y + r.Height + r.Height;
  444. }
  445. }
  446. CurrentIndex = CurrentIndex + 1;
  447. }
  448. }
  449. }
  450. }
  451. private void SerialPanel_Scroll(object sender, ScrollEventArgs e)
  452. {
  453. Graphics g = this.SerialPanel.CreateGraphics();
  454. g.Clear(this.BackColor);
  455. SerialPanel.Refresh();
  456. }
  457. private void TestFile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  458. {
  459. }
  460. private void CraftInfDgv_CellContentClick(object sender, DataGridViewCellEventArgs e)
  461. {
  462. if (e.RowIndex > 0)
  463. {
  464. if (CraftInfDgv.Columns[e.ColumnIndex].Name.ToUpper() == "STD_CLASS")
  465. {
  466. if (CraftInfDgv.Rows[e.RowIndex].Cells["STD_CLASS"].Value != null)
  467. {
  468. System.Diagnostics.Process.Start(CraftInfDgv.Rows[e.RowIndex].Cells["STD_CLASS"].Value.ToString());
  469. }
  470. }
  471. }
  472. }
  473. }
  474. }