using System; using System.Collections.Generic; using System.Data; using System.Data.OleDb; using System.IO; using System.Linq; using System.Reflection; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using MESClassLibrary.BLL.BasicInfo; using MESClassLibrary.BLL.Log; using MESClassLibrary.EFModel; using MESWebSite.Tool; namespace MESWebSite.Manage { public partial class PaintColorInfo : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (Request.Cookies["LoginUserInfo"] == null) { Response.Write(""); } } protected void ImportExcel_Click(object sender, EventArgs e) { try { if (input01.PostedFile.ContentLength > 0) { string strUrl = "../Excel/"; if (Directory.Exists(Server.MapPath(strUrl)) == false) { Directory.CreateDirectory(Server.MapPath(strUrl)); } String fileExtension = System.IO.Path.GetExtension(input01.PostedFile.FileName).ToLower(); String fileName = DateTime.Now.ToString("yyyyMMddHHmmssfff") + fileExtension; input01.PostedFile.SaveAs(Server.MapPath(strUrl) + fileName); string excelPath = Server.MapPath(strUrl) + fileName; DataTable dt = null; #region 校验文件 try { dt = GetExcelTableByOleDB(excelPath, "Sheet1"); if (dt != null && dt.Rows.Count > 1) { } else { ClientScript.RegisterStartupScript(this.GetType(), "tishi", ""); return; } } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); return; } #endregion PaintColorInfoBLL bll = new PaintColorInfoBLL(); List list = new List(); tb_PaintColorInfo md = new tb_PaintColorInfo(); ColorBLL cbll=new ColorBLL(); ProductBLL pbll=new ProductBLL(); #region 校验数据 if (dt != null && dt.Rows.Count > 0) { for (int i = 1; i < dt.Rows.Count; i++) { #region 值校验 string color = dt.Rows[i][0].ToString(); if (color == "") { ClientScript.RegisterStartupScript(this.GetType(), "tishi", ""); return; } string paintNo = dt.Rows[i][1].ToString(); if (paintNo == "") { ClientScript.RegisterStartupScript(this.GetType(), "tishi", ""); return; } string stockNo = dt.Rows[i][2].ToString(); if (stockNo == "") { ClientScript.RegisterStartupScript(this.GetType(), "tishi", ""); return; } #endregion #region 逻辑校验 if (!cbll.IsExist(color)) { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); return; } DataTable dt1 = pbll.SearchInfoByPartNo(paintNo); if (dt1 != null && dt1.Rows.Count > 0) { } else { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); return; } DataTable dt2 = pbll.SearchInfoByStock(stockNo); if (dt2 != null && dt2.Rows.Count > 0) { } else { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); return; } if (bll.IsExist(paintNo)) { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); return; } #endregion var info = Request.Cookies.Get("LoginUserInfo"); if (info != null) { md.UserID = info["UserID"].ToUpper(); } md.ID = Guid.NewGuid().ToString(); md.Color = color; md.Paint_No = paintNo; //md.OutDes = dt.Rows[i][3].ToString(); md.StockNo = stockNo; list.Add(md); } } #endregion #region 存储数据 try { bool flag = false; if (list.Count > 0) { foreach (var item in list) { flag = bll.AddInfo(item); } } if (flag == true) { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); } else { ClientScript.RegisterStartupScript(this.GetType(), "提示", ""); } } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); } #endregion } } catch (Exception ex) { LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); } } public DataTable GetExcelTableByOleDB(string strExcelPath, string tableName) { OleDbConnection objConn = null; try { DataTable dtExcel = new DataTable(); //数据表 DataSet ds = new DataSet(); //获取文件扩展名 string strExtension = System.IO.Path.GetExtension(strExcelPath); string strFileName = System.IO.Path.GetFileName(strExcelPath); //Excel的连接 switch (strExtension) { case ".xls": objConn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strExcelPath + ";" + "Extended Properties=\"Excel 8.0;HDR=NO;IMEX=1;\""); break; case ".xlsx": objConn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + strExcelPath + ";" + "Extended Properties=\"Excel 12.0;HDR=NO;IMEX=1;\""); break; default: objConn = null; break; } if (objConn == null) { return null; } try { objConn.Open(); } catch (Exception ex) { } //获取Excel中所有Sheet表的信息 //System.Data.DataTable schemaTable = objConn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, null); //获取Excel的第一个Sheet表名 //string tableName = schemaTable.Rows[0][2].ToString().Trim(); string strSql = "select * from [" + tableName + "$]"; //获取Excel指定Sheet表中的信息 OleDbCommand objCmd = new OleDbCommand(strSql, objConn); OleDbDataAdapter myData = new OleDbDataAdapter(strSql, objConn); myData.Fill(ds, tableName);//填充数据 objConn.Close(); //dtExcel即为excel文件中指定表中存储的信息 dtExcel = ds.Tables[tableName]; return dtExcel; } catch (Exception ex) { if (objConn != null) { objConn.Close(); } return null; } } } }