using DevExpress.Printing.Core.PdfExport.Metafile; using DevExpress.XtraCharts.Native; using LabelManager2; using NPOI.HSSF.UserModel; using NPOI.SS.Formula.Functions; using NPOI.SS.UserModel; using System; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Threading; using System.Windows.Forms; using UAS_MES_NEW.DataOperate; using UAS_MES_NEW.Entity; using UAS_MES_NEW.PublicForm; using UAS_MES_NEW.PublicMethod; namespace UAS_MES_NEW.Query { public partial class Query_SpecialReport : Form { DataHelper dh = SystemInf.dh; Thread InitPrint; public Query_SpecialReport() { InitializeComponent(); } private void Query_SpecialReport_Load(object sender, EventArgs e) { pr_code.TableName = "product"; pr_code.SelectField = "pr_code # 产品编号,pr_detail # 产品名称,pr_spec # 产品规格"; pr_code.FormName = Name; pr_code.DBTitle = "物料查询"; pr_code.SetValueField = new string[] { "pr_code" }; } private static string lpad(int length, string number) { while (number.Length < length) { number = "0" + number; } number = number.Substring(number.Length - length, length); return number; } private void inoutno_TextChanged(object sender, EventArgs e) { } DataTable importdata; private void XY_Click(object sender, EventArgs e) { ImportExcel1.Filter = "(*.xls)|*.xls"; DialogResult result; result = ImportExcel1.ShowDialog(); if (result == DialogResult.OK) { XYFilePath.Text = ImportExcel1.FileName; importdata = ExcelToDataTable(ImportExcel1.FileName, true); ExportFileDialog.Description = "选择导出的路径"; DialogResult result1 = ExportFileDialog.ShowDialog(); if (result1 == DialogResult.OK) { InitPrint = new Thread(ExportData); SetLoadingWindow stw = new SetLoadingWindow(InitPrint, "导出贴片机数据"); BaseUtil.SetFormCenter(stw); stw.ShowDialog(); } } } private void ExportData() { Stream fs = new FileStream(ExportFileDialog.SelectedPath + @"\" + pr_code.Text + ".txt", FileMode.CreateNew, FileAccess.ReadWrite); fs.Dispose(); List list = new List(); for (int i = 0; i < importdata.Rows.Count; i++) { string Refer = importdata.Rows[i]["Refer"].ToString(); DataTable bom = (DataTable)dh.ExecuteSql("select replace(wm_concat(bd_location||';'||nvl(bd_soncode,PRE_SONCODE)||' '||PRE_REPCODE),',',' ') from BOMDetail " + "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 " + "bo_mothercode='" + pr_code.Text + "' and instr(','||bd_location||',',',"+Refer+",')>0", "select"); if (bom.Rows.Count > 0) { if (bom.Rows[0][0].ToString() != "") { if (!list.Contains(bom.Rows[0][0].ToString())) { list.Add(bom.Rows[0][0].ToString()); } } } Process.Text = (i + 1) + "/" + importdata.Rows.Count; } StreamWriter sw = File.AppendText(ExportFileDialog.SelectedPath + @"\" + pr_code.Text + ".txt"); for (int i = 0; i < list.Count; i++) { Console.WriteLine(list[i]); sw.WriteLine(list[i]); } sw.Close(); } public static bool OpenCSVFile(ref DataTable mycsvdt, string filepath) { string strpath = filepath; //csv文件的路径             try { int intColCount = 0; bool blnFlag = true; DataColumn mydc; DataRow mydr; string strline; string[] aryline; StreamReader mysr = new StreamReader(strpath, System.Text.Encoding.UTF8); while ((strline = mysr.ReadLine()) != null) { aryline = strline.Split(new char[] { ',' }); //给datatable加上列名 if (blnFlag) { blnFlag = false; intColCount = aryline.Length; int col = 0; for (int i = 0; i < aryline.Length; i++) { col = i + 1; mydc = new DataColumn(col.ToString()); mycsvdt.Columns.Add(mydc); } } //填充数据并加入到datatable中 mydr = mycsvdt.NewRow(); for (int i = 0; i < aryline.Length; i++) { mydr[i] = aryline[i]; } mycsvdt.Rows.Add(mydr); } mysr.Close(); return true; } catch (Exception ex) { Console.WriteLine(ex.Message + ex.StackTrace); return false; } } private void TraceFile_Click(object sender, EventArgs e) { ImportExcel1.Filter = "(*.xls)|*.xls"; DialogResult result; result = ImportExcel1.ShowDialog(); if (result == DialogResult.OK) { TraceFilePath.Text = ImportExcel1.FileName; DataTable dt = ExcelToDataTable1(ImportExcel1.FileName, false); List STF_MODEL = new List(); List STF_FEEDER = new List(); List STF_FEEDERNO = new List(); List STF_LOCATION = new List(); string stf_code = dt.Rows[0][10].ToString(); for (int i = 0; i < dt.Rows.Count; i++) { string data = ""; for (int j = 0; j < dt.Columns.Count; j++) { data += dt.Rows[i][j].ToString() + " "; } } dh.BatchInsert("insert into SMTTRACEFILE(STF_ID, STF_MODEL, STF_FEEDER, STF_FEEDERNO, STF_LOCATION, STF_CODE, STF_INDATE, STF_INMAN)" + "values(SMTTRACEFILE_SEQ.nextval,:STF_MODEL,:STF_FEEDER,:STF_FEEDERNO,:STF_LOCATION,'"+ stf_code + "',sysdate,'" + User.UserName + "')", new string[] { "STF_MODEL", "STF_FEEDER", "STF_FEEDERNO", "STF_LOCATION" }, STF_MODEL.ToArray(), STF_FEEDER.ToArray(), STF_FEEDERNO.ToArray(), STF_LOCATION.ToArray()); dataGridView1.DataSource = dt; } } public static DataTable ExcelToDataTable(string filePath, bool isColumnName) { DataTable dataTable = null; FileStream fs = null; DataColumn column = null; DataRow dataRow = null; IWorkbook workbook = null; ISheet sheet = null; IRow row = null; ICell cell = null; int startRow = 0; try { using (fs = File.OpenRead(filePath)) { // 2007版本 workbook = new HSSFWorkbook(fs); if (workbook != null) { sheet = workbook.GetSheetAt(0);//读取第一个sheet,当然也可以循环读取每个sheet dataTable = new DataTable(); if (sheet != null) { int rowCount = sheet.LastRowNum;//总行数 if (rowCount > 0) { IRow firstRow = sheet.GetRow(0);//第一行 int cellCount = firstRow.LastCellNum;//列数 //构建datatable的列 if (isColumnName) { startRow = 1;//如果第一行是列名,则从第二行开始读取 for (int i = firstRow.FirstCellNum; i < cellCount; ++i) { cell = firstRow.GetCell(i); if (cell != null) { if (cell.StringCellValue != null) { column = new DataColumn(cell.StringCellValue); dataTable.Columns.Add(column); } } } } else { for (int i = firstRow.FirstCellNum; i < cellCount; ++i) { column = new DataColumn("column" + (i + 1)); dataTable.Columns.Add(column); } } //填充行 for (int i = startRow; i <= rowCount; ++i) { row = sheet.GetRow(i); if (row == null) continue; dataRow = dataTable.NewRow(); for (int j = row.FirstCellNum; j < cellCount; ++j) { cell = row.GetCell(j); if (cell == null) { dataRow[j] = ""; } else { //CellType(Unknown = -1,Numeric = 0,String = 1,Formula = 2,Blank = 3,Boolean = 4,Error = 5,) switch (cell.CellType) { case CellType.BLANK: dataRow[j] = ""; break; case CellType.NUMERIC: short format = cell.CellStyle.DataFormat; //对时间格式(2015.12.5、2015/12/5、2015-12-5等)的处理 if (format == 14 || format == 31 || format == 57 || format == 58) dataRow[j] = cell.DateCellValue; else dataRow[j] = cell.NumericCellValue; break; case CellType.STRING: dataRow[j] = cell.StringCellValue; break; case CellType.FORMULA: dataRow[j] = cell.StringCellValue; break; } } } dataTable.Rows.Add(dataRow); } } } } } return dataTable; } catch (Exception ex) { Console.WriteLine(ex.Message); if (fs != null) { fs.Close(); } return null; } } public static DataTable ExcelToDataTable1(string filePath, bool isColumnName) { DataTable dataTable = null; FileStream fs = null; DataColumn column = null; DataRow dataRow = null; IWorkbook workbook = null; ISheet sheet = null; IRow row = null; ICell cell = null; int startRow = 0; try { using (fs = File.OpenRead(filePath)) { // 2007版本 workbook = new HSSFWorkbook(fs); if (workbook != null) { sheet = workbook.GetSheetAt(0);//读取第一个sheet,当然也可以循环读取每个sheet dataTable = new DataTable(); if (sheet != null) { int rowCount = sheet.LastRowNum;//总行数 if (rowCount > 0) { IRow firstRow = sheet.GetRow(1);//第一行 int cellCount = firstRow.LastCellNum;//列数 //构建datatable的列 if (isColumnName) { startRow = 1;//如果第一行是列名,则从第二行开始读取 for (int i = firstRow.FirstCellNum; i < cellCount; ++i) { cell = firstRow.GetCell(i); if (cell != null) { if (cell.StringCellValue != null) { column = new DataColumn(cell.StringCellValue); dataTable.Columns.Add(column); } } } } else { startRow = 1; for (int i = firstRow.FirstCellNum; i < cellCount; ++i) { column = new DataColumn("column" + (i + 1)); dataTable.Columns.Add(column); } } //填充行 for (int i = startRow; i <= rowCount; ++i) { row = sheet.GetRow(i); Console.WriteLine(i); if (row == null) continue; dataRow = dataTable.NewRow(); for (int j = 0; j < 40; ++j) { cell = row.GetCell(j); if (cell == null) { dataRow[j] = ""; } else { //CellType(Unknown = -1,Numeric = 0,String = 1,Formula = 2,Blank = 3,Boolean = 4,Error = 5,) switch (cell.CellType) { case CellType.BLANK: dataRow[j] = ""; break; case CellType.NUMERIC: short format = cell.CellStyle.DataFormat; //对时间格式(2015.12.5、2015/12/5、2015-12-5等)的处理 if (format == 14 || format == 31 || format == 57 || format == 58) dataRow[j] = cell.DateCellValue; else dataRow[j] = cell.NumericCellValue; break; case CellType.STRING: dataRow[j] = cell.StringCellValue; break; case CellType.FORMULA: dataRow[j] = cell.StringCellValue; break; } } } dataTable.Rows.Add(dataRow); } } } } } return dataTable; } catch (Exception ex) { Console.WriteLine(ex.Message); if (fs != null) { fs.Close(); } return null; } } } }