Query_SpecialReport.cs 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. using DevExpress.Printing.Core.PdfExport.Metafile;
  2. using DevExpress.XtraCharts.Native;
  3. using ExcelHelper;
  4. using LabelManager2;
  5. using NPOI.HSSF.UserModel;
  6. using NPOI.SS.Formula.Functions;
  7. using NPOI.SS.UserModel;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Data;
  11. using System.IO;
  12. using System.Linq;
  13. using System.Threading;
  14. using System.Windows.Forms;
  15. using UAS_MES_NEW.DataOperate;
  16. using UAS_MES_NEW.Entity;
  17. using UAS_MES_NEW.PublicForm;
  18. using UAS_MES_NEW.PublicMethod;
  19. namespace UAS_MES_NEW.Query
  20. {
  21. public partial class Query_SpecialReport : Form
  22. {
  23. DataHelper dh = SystemInf.dh;
  24. Thread InitPrint;
  25. public Query_SpecialReport()
  26. {
  27. InitializeComponent();
  28. }
  29. private void Query_SpecialReport_Load(object sender, EventArgs e)
  30. {
  31. pr_code.TableName = "product";
  32. pr_code.SelectField = "pr_code # 产品编号,pr_detail # 产品名称,pr_spec # 产品规格";
  33. pr_code.FormName = Name;
  34. pr_code.DBTitle = "物料查询";
  35. pr_code.SetValueField = new string[] { "pr_code" };
  36. pr_code.Text = "12112572";
  37. }
  38. private static string lpad(int length, string number)
  39. {
  40. while (number.Length < length)
  41. {
  42. number = "0" + number;
  43. }
  44. number = number.Substring(number.Length - length, length);
  45. return number;
  46. }
  47. private void inoutno_TextChanged(object sender, EventArgs e)
  48. {
  49. }
  50. DataTable importdata;
  51. private void XY_Click(object sender, EventArgs e)
  52. {
  53. ImportExcel1.Filter = "(*.xls)|*.xls";
  54. DialogResult result;
  55. result = ImportExcel1.ShowDialog();
  56. if (result == DialogResult.OK)
  57. {
  58. XYFilePath.Text = ImportExcel1.FileName;
  59. importdata = ExcelToDataTable(ImportExcel1.FileName, true);
  60. ExportFileDialog.Description = "选择导出的路径";
  61. DialogResult result1 = ExportFileDialog.ShowDialog();
  62. if (result1 == DialogResult.OK)
  63. {
  64. InitPrint = new Thread(ExportData);
  65. SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "导出贴片机数据");
  66. BaseUtil.SetFormCenter(stw);
  67. stw.ShowDialog();
  68. }
  69. }
  70. }
  71. ExcelHandler excel = new ExcelHandler();
  72. private void ExportData()
  73. {
  74. try
  75. {
  76. string time = System.DateTime.Now.ToString("yyyyMMddhhmmss");
  77. Stream fs = new FileStream(ExportFileDialog.SelectedPath + @"\" + time + pr_code.Text + ".txt", FileMode.CreateNew, FileAccess.ReadWrite);
  78. fs.Dispose();
  79. List<string> list = new List<string>();
  80. for (int i = 0; i < importdata.Rows.Count; i++)
  81. {
  82. string Refer = importdata.Rows[i]["Refer"].ToString();
  83. DataTable bom = (DataTable)dh.ExecuteSql("select bd_soncode,replace(wm_concat(bd_location||';'||nvl(bd_soncode,PRE_SONCODE)||' '||PRE_REPCODE),',',' ') from BOMDetail " +
  84. "LEFT JOIN bom on bd_bomid=bo_id left join Product ON bd_soncode=pr_code left join ProdReplace on pre_bdid =bd_id where " +
  85. "bo_mothercode='" + pr_code.Text + "' and instr(','||bd_location||',','," + Refer + ",')>0 group by bd_soncode", "select");
  86. if (bom.Rows.Count > 0)
  87. {
  88. if (bom.Rows[0][1].ToString() != "")
  89. {
  90. if (!list.Contains(bom.Rows[0][1].ToString()))
  91. {
  92. list.Add(bom.Rows[0][1].ToString());
  93. }
  94. }
  95. importdata.Rows[i][1] = bom.Rows[0][0].ToString();
  96. }
  97. Process.Text = (i + 1) + "/" + importdata.Rows.Count;
  98. }
  99. excel.ExportExcel(importdata, ExportFileDialog.SelectedPath + @"\" + time + pr_code.Text + ".xls");
  100. StreamWriter sw = File.AppendText(ExportFileDialog.SelectedPath + @"\" + time + pr_code.Text + ".txt");
  101. for (int i = 0; i < list.Count; i++)
  102. {
  103. Console.WriteLine(list[i]);
  104. sw.WriteLine(list[i]);
  105. }
  106. sw.Close();
  107. }
  108. catch (Exception ex)
  109. {
  110. MessageBox.Show(ex.Message);
  111. }
  112. }
  113. public static bool OpenCSVFile(ref DataTable mycsvdt, string filepath)
  114. {
  115. string strpath = filepath; //csv文件的路径
  116.             try
  117. {
  118. int intColCount = 0;
  119. bool blnFlag = true;
  120. DataColumn mydc;
  121. DataRow mydr;
  122. string strline;
  123. string[] aryline;
  124. StreamReader mysr = new StreamReader(strpath, System.Text.Encoding.UTF8);
  125. while ((strline = mysr.ReadLine()) != null)
  126. {
  127. aryline = strline.Split(new char[] { ',' });
  128. //给datatable加上列名
  129. if (blnFlag)
  130. {
  131. blnFlag = false;
  132. intColCount = aryline.Length;
  133. int col = 0;
  134. for (int i = 0; i < aryline.Length; i++)
  135. {
  136. col = i + 1;
  137. mydc = new DataColumn(col.ToString());
  138. mycsvdt.Columns.Add(mydc);
  139. }
  140. }
  141. //填充数据并加入到datatable中
  142. mydr = mycsvdt.NewRow();
  143. for (int i = 0; i < aryline.Length; i++)
  144. {
  145. mydr[i] = aryline[i];
  146. }
  147. mycsvdt.Rows.Add(mydr);
  148. }
  149. mysr.Close();
  150. return true;
  151. }
  152. catch (Exception ex)
  153. {
  154. Console.WriteLine(ex.Message + ex.StackTrace);
  155. return false;
  156. }
  157. }
  158. private void TraceFile_Click(object sender, EventArgs e)
  159. {
  160. ImportExcel1.Filter = "(*.xls)|*.xls";
  161. DialogResult result;
  162. result = ImportExcel1.ShowDialog();
  163. if (result == DialogResult.OK)
  164. {
  165. TraceFilePath.Text = ImportExcel1.FileName;
  166. DataTable dt = ExcelToDataTable1(ImportExcel1.FileName, false);
  167. List<string> STF_MODEL = new List<string>();
  168. List<string> STF_FEEDER = new List<string>();
  169. List<string> STF_FEEDERNO = new List<string>();
  170. List<string> STF_LOCATION = new List<string>();
  171. List<string> STF_MACHINE = new List<string>();
  172. string stf_code = dt.Rows[0][9].ToString();
  173. for (int i = 0; i < dt.Rows.Count; i++)
  174. {
  175. STF_MODEL.Add(dt.Rows[i][0].ToString());
  176. STF_FEEDER.Add(dt.Rows[i][3].ToString());
  177. STF_FEEDERNO.Add(dt.Rows[i][11].ToString());
  178. STF_LOCATION.Add(dt.Rows[i][12].ToString());
  179. STF_MACHINE.Add(dt.Rows[i][1].ToString());
  180. }
  181. dh.ExecuteSql("delete from SMTTRACEFILE where stf_code='" + stf_code + "'", "delete");
  182. dh.BatchInsert("insert into SMTTRACEFILE(STF_ID,stf_prodcode, STF_MODEL, STF_FEEDER, STF_FEEDERNO, STF_LOCATION,STF_MACHINE, STF_CODE, STF_INDATE, STF_INMAN)" +
  183. "values(SMTTRACEFILE_SEQ.nextval,'"+pr_code.Text+"',:STF_MODEL,:STF_FEEDER,:STF_FEEDERNO,:STF_LOCATION,:STF_MACHINE,'" + stf_code + "',sysdate,'" + User.UserName + "')",
  184. new string[] { "STF_MODEL", "STF_FEEDER", "STF_FEEDERNO", "STF_LOCATION", "STF_MACHINE" }, STF_MODEL.ToArray(), STF_FEEDER.ToArray(), STF_FEEDERNO.ToArray(), STF_LOCATION.ToArray(), STF_MACHINE.ToArray());
  185. dh.ExecuteSql("delete from SMTTRACEFILE where ( STF_MODEL is null and STF_FEEDER is null and STF_FEEDERNO is null and STF_MACHINE is null ) or stf_model in ('料槽','数量','印刷板') or STF_MACHINE in('贴片生产线:','设置:') ", "delete");
  186. dataGridView1.DataSource = dt;
  187. DataTable dt1 = (DataTable)dh.ExecuteSql("select STF_ID, STF_MODEL,STF_MACHINE, STF_FEEDER, STF_FEEDERNO, STF_LOCATION,pr_orispeccode,bo_mothercode,bd_baseqty,bd_soncode,bd_location, STF_CODE, STF_INDATE, STF_INMAN from SMTTRACEFILE left join (\r\nselect bo_mothercode,bd_baseqty,bd_soncode,replace(bd_location,',',' ')bd_location from BOMDetail \r\nLEFT JOIN bom on bd_bomid=bo_id left join Product ON bd_soncode=pr_code left join ProdReplace on pre_bdid =bd_id where bo_mothercode='" + pr_code.Text + "' ) on bo_mothercode=stf_prodcode and bd_soncode=STF_LOCATION \r\nleft join product on pr_code=STF_LOCATION where stf_prodcode='"+pr_code.Text+"' order by stf_id", "select");
  188. excel.ExportExcel_LIANGAN(dt1, "C:\\Users\\callm\\Desktop\\客户资料\\"+System.DateTime.Now.ToString("yyyyMMddhhmmss")+".xls");
  189. }
  190. }
  191. public static DataTable ExcelToDataTable(string filePath, bool isColumnName)
  192. {
  193. DataTable dataTable = null;
  194. FileStream fs = null;
  195. DataColumn column = null;
  196. DataRow dataRow = null;
  197. IWorkbook workbook = null;
  198. ISheet sheet = null;
  199. IRow row = null;
  200. ICell cell = null;
  201. int startRow = 0;
  202. try
  203. {
  204. using (fs = File.OpenRead(filePath))
  205. {
  206. // 2007版本
  207. workbook = new HSSFWorkbook(fs);
  208. if (workbook != null)
  209. {
  210. sheet = workbook.GetSheetAt(0);//读取第一个sheet,当然也可以循环读取每个sheet
  211. dataTable = new DataTable();
  212. if (sheet != null)
  213. {
  214. int rowCount = sheet.LastRowNum;//总行数
  215. if (rowCount > 0)
  216. {
  217. IRow firstRow = sheet.GetRow(0);//第一行
  218. int cellCount = firstRow.LastCellNum;//列数
  219. //构建datatable的列
  220. if (isColumnName)
  221. {
  222. startRow = 1;//如果第一行是列名,则从第二行开始读取
  223. for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
  224. {
  225. cell = firstRow.GetCell(i);
  226. if (cell != null)
  227. {
  228. if (cell.StringCellValue != null)
  229. {
  230. column = new DataColumn(cell.StringCellValue);
  231. dataTable.Columns.Add(column);
  232. }
  233. }
  234. }
  235. }
  236. else
  237. {
  238. for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
  239. {
  240. column = new DataColumn("column" + (i + 1));
  241. dataTable.Columns.Add(column);
  242. }
  243. }
  244. //填充行
  245. for (int i = startRow; i <= rowCount; ++i)
  246. {
  247. row = sheet.GetRow(i);
  248. if (row == null) continue;
  249. dataRow = dataTable.NewRow();
  250. for (int j = row.FirstCellNum; j < cellCount; ++j)
  251. {
  252. cell = row.GetCell(j);
  253. if (cell == null)
  254. {
  255. dataRow[j] = "";
  256. }
  257. else
  258. {
  259. //CellType(Unknown = -1,Numeric = 0,String = 1,Formula = 2,Blank = 3,Boolean = 4,Error = 5,)
  260. switch (cell.CellType)
  261. {
  262. case CellType.BLANK:
  263. dataRow[j] = "";
  264. break;
  265. case CellType.NUMERIC:
  266. short format = cell.CellStyle.DataFormat;
  267. //对时间格式(2015.12.5、2015/12/5、2015-12-5等)的处理
  268. if (format == 14 || format == 31 || format == 57 || format == 58)
  269. dataRow[j] = cell.DateCellValue;
  270. else
  271. dataRow[j] = cell.NumericCellValue;
  272. break;
  273. case CellType.STRING:
  274. dataRow[j] = cell.StringCellValue;
  275. break;
  276. case CellType.FORMULA:
  277. dataRow[j] = cell.StringCellValue;
  278. break;
  279. }
  280. }
  281. }
  282. dataTable.Rows.Add(dataRow);
  283. }
  284. }
  285. }
  286. }
  287. }
  288. return dataTable;
  289. }
  290. catch (Exception ex)
  291. {
  292. Console.WriteLine(ex.Message);
  293. if (fs != null)
  294. {
  295. fs.Close();
  296. }
  297. return null;
  298. }
  299. }
  300. public static DataTable ExcelToDataTable1(string filePath, bool isColumnName)
  301. {
  302. DataTable dataTable = null;
  303. FileStream fs = null;
  304. DataColumn column = null;
  305. DataRow dataRow = null;
  306. IWorkbook workbook = null;
  307. ISheet sheet = null;
  308. IRow row = null;
  309. ICell cell = null;
  310. int startRow = 0;
  311. try
  312. {
  313. using (fs = File.OpenRead(filePath))
  314. {
  315. // 2007版本
  316. workbook = new HSSFWorkbook(fs);
  317. if (workbook != null)
  318. {
  319. sheet = workbook.GetSheetAt(0);//读取第一个sheet,当然也可以循环读取每个sheet
  320. dataTable = new DataTable();
  321. if (sheet != null)
  322. {
  323. int rowCount = sheet.LastRowNum;//总行数
  324. if (rowCount > 0)
  325. {
  326. IRow firstRow = sheet.GetRow(1);//第一行
  327. int cellCount = firstRow.LastCellNum;//列数
  328. //构建datatable的列
  329. if (isColumnName)
  330. {
  331. startRow = 1;//如果第一行是列名,则从第二行开始读取
  332. for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
  333. {
  334. cell = firstRow.GetCell(i);
  335. if (cell != null)
  336. {
  337. if (cell.StringCellValue != null)
  338. {
  339. column = new DataColumn(cell.StringCellValue);
  340. dataTable.Columns.Add(column);
  341. }
  342. }
  343. }
  344. }
  345. else
  346. {
  347. startRow = 1;
  348. for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
  349. {
  350. column = new DataColumn("column" + (i + 1));
  351. dataTable.Columns.Add(column);
  352. }
  353. }
  354. //填充行
  355. for (int i = startRow; i <= rowCount; ++i)
  356. {
  357. row = sheet.GetRow(i);
  358. Console.WriteLine(i);
  359. if (row == null) continue;
  360. dataRow = dataTable.NewRow();
  361. for (int j = 0; j < 40; ++j)
  362. {
  363. cell = row.GetCell(j);
  364. if (cell == null)
  365. {
  366. dataRow[j] = "";
  367. }
  368. else
  369. {
  370. //CellType(Unknown = -1,Numeric = 0,String = 1,Formula = 2,Blank = 3,Boolean = 4,Error = 5,)
  371. switch (cell.CellType)
  372. {
  373. case CellType.BLANK:
  374. dataRow[j] = "";
  375. break;
  376. case CellType.NUMERIC:
  377. short format = cell.CellStyle.DataFormat;
  378. //对时间格式(2015.12.5、2015/12/5、2015-12-5等)的处理
  379. if (format == 14 || format == 31 || format == 57 || format == 58)
  380. dataRow[j] = cell.DateCellValue;
  381. else
  382. dataRow[j] = cell.NumericCellValue;
  383. break;
  384. case CellType.STRING:
  385. dataRow[j] = cell.StringCellValue;
  386. break;
  387. case CellType.FORMULA:
  388. dataRow[j] = cell.StringCellValue;
  389. break;
  390. }
  391. }
  392. }
  393. dataTable.Rows.Add(dataRow);
  394. }
  395. }
  396. }
  397. }
  398. }
  399. return dataTable;
  400. }
  401. catch (Exception ex)
  402. {
  403. Console.WriteLine(ex.Message);
  404. if (fs != null)
  405. {
  406. fs.Close();
  407. }
  408. return null;
  409. }
  410. }
  411. }
  412. }