Query_SN.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. using LabelManager2;
  2. using System;
  3. using System.Data;
  4. using System.Security.Cryptography;
  5. using System.Text;
  6. using System.Threading;
  7. using System.Windows.Forms;
  8. using UAS_MES_NEW.DataOperate;
  9. using UAS_MES_NEW.Entity;
  10. using UAS_MES_NEW.PublicForm;
  11. using UAS_MES_NEW.PublicMethod;
  12. namespace UAS_MES_NEW.Query
  13. {
  14. public partial class Query_SN : Form
  15. {
  16. DataHelper dh = SystemInf.dh;
  17. ApplicationClass lbl;
  18. Thread InitPrint;
  19. DataTable Dbfind;
  20. Document doc;
  21. public Query_SN()
  22. {
  23. InitializeComponent();
  24. }
  25. private void Export_Click(object sender, EventArgs e)
  26. {
  27. ExcelExport("");
  28. }
  29. //选择导出Excel时是选择导出数据的还是模板
  30. private void ExcelExport(string DataOrTemplet)
  31. {
  32. //Data表示导出数据
  33. //Templet表示导出模板
  34. MD5 md5 = MD5.Create();
  35. folderBrowserDialog1.Description = "选择导出的路径";
  36. DialogResult result = folderBrowserDialog1.ShowDialog();
  37. if (result == DialogResult.OK)
  38. {
  39. string FolderPath = folderBrowserDialog1.SelectedPath;
  40. ExcelHandler eh = new ExcelHandler();
  41. DataTable dt = new DataTable();
  42. dt.Columns.Add("工单号");
  43. dt.Columns.Add("序列号");
  44. for (decimal i = currentSerial.Value; i < currentSerial.Value + int.Parse(num.Text); i++)
  45. {
  46. DataRow dr = dt.NewRow();
  47. dr["工单号"] = ma_code.Text;
  48. string serial = ma_code.Text
  49. + lpad(int.Parse(seriallength.Text), (i + 1).ToString());
  50. dr["序列号"] = serial;
  51. dt.Rows.Add(dr);
  52. }
  53. eh.ExportExcel(dt, FolderPath);
  54. }
  55. }
  56. private void Query_SpecialReport_Load(object sender, EventArgs e)
  57. {
  58. InitPrint = new Thread(InPrint);
  59. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "初始化打印程序");
  60. BaseUtil.SetFormCenter(stw);
  61. stw.ShowDialog();
  62. doc = lbl.Documents.Open(System.Windows.Forms.Application.StartupPath + @"\SN.lab");
  63. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  64. ma_code.SelectField = "ma_code # 工单编号,ma_prodcode # 产品编号,pr_spec # 型号";
  65. ma_code.FormName = Name;
  66. ma_code.SetValueField = new string[] { "ma_code" };
  67. ma_code.Condition = "ma_statuscode='STARTED'";
  68. ma_code.DbChange += pr_code_DbChange;
  69. }
  70. private void pr_code_DbChange(object sender, EventArgs e)
  71. {
  72. Dbfind = ma_code.ReturnData;
  73. BaseUtil.SetFormValue(this.Controls, Dbfind);
  74. }
  75. private void InPrint()
  76. {
  77. try
  78. {
  79. lbl = new ApplicationClass();
  80. BaseUtil.WriteLbl();
  81. }
  82. catch (Exception)
  83. {
  84. MessageBox.Show("未正确安装CodeSoft软件");
  85. }
  86. }
  87. private static string MD5Encoding(string rawPass)
  88. {
  89. // 创建MD5类的默认实例:MD5CryptoServiceProvider
  90. MD5 md5 = MD5.Create();
  91. byte[] bs = Encoding.UTF8.GetBytes(rawPass);
  92. byte[] hs = md5.ComputeHash(bs);
  93. StringBuilder stb = new StringBuilder();
  94. foreach (byte b in hs)
  95. {
  96. // 以十六进制格式格式化
  97. stb.Append(b.ToString("x2"));
  98. }
  99. return stb.ToString().ToUpper();
  100. }
  101. private static string lpad(int length, string number)
  102. {
  103. while (number.Length < length)
  104. {
  105. number = "0" + number;
  106. }
  107. number = number.Substring(number.Length - length, length);
  108. return number;
  109. }
  110. private void Print_Click(object sender, EventArgs e)
  111. {
  112. }
  113. }
  114. }