You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
252 lines
11 KiB
252 lines
11 KiB
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.Log;
|
|
using MESClassLibrary.BLL.Plan243;
|
|
using MESClassLibrary.BLL.Plan247;
|
|
using MESClassLibrary.EFModel;
|
|
|
|
namespace MESWebSite.Manage
|
|
{
|
|
public partial class Plan_243 : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
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", "<script type='text/javascript'>$.messager.alert('提示', '模板内容为空', 'warning');</script>");
|
|
return;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return;
|
|
}
|
|
#endregion
|
|
Plan243BLL bll = new Plan243BLL();
|
|
List<tb_Plan_243> list = new List<tb_Plan_243>();
|
|
#region 校验数据
|
|
if (dt != null && dt.Rows.Count > 0)
|
|
{
|
|
for (int i = 1; i < dt.Rows.Count; i++)
|
|
{
|
|
#region 值校验
|
|
string OrderNo = dt.Rows[i][0].ToString();
|
|
if (OrderNo == "")
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,生产计划单号为空,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
string Item = dt.Rows[i][1].ToString();
|
|
if (Item == "")
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,序号为空,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
int int_item = 0;
|
|
if (!Int32.TryParse(Item, out int_item))
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,序号不是整数,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
|
|
string PartNo = dt.Rows[i][2].ToString();
|
|
if (PartNo == "")
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,零件号为空,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
string PlanCount = dt.Rows[i][5].ToString();
|
|
if (PlanCount == "")
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,计划数量为空,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
int int_planCount = 0;
|
|
if (!Int32.TryParse(PlanCount, out int_planCount))
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,计划数量不是整数,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
#endregion
|
|
|
|
#region 业务逻辑校验
|
|
|
|
if (bll.QueryByOrderNo(OrderNo.Substring(0, 8), PartNo))
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,当天计划已存在该零件的生产计划,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
if (list.Where(p => p.OrderNo.Contains(OrderNo.Substring(0, 8)) && p.PartNo.Equals(PartNo)).Count() > 0)
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,导入模板中存在多条同一天计划相同零件的生产计划,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
if (bll.QueryByOrderNoAndItem(OrderNo, int_item))
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,计划已存在该序号,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
if (list.Where(p => p.OrderNo.Equals(OrderNo) && p.Item == int_item).Count() > 0)
|
|
{
|
|
ClientScript.RegisterStartupScript(this.GetType(), "tishi", "<script type='text/javascript'>$.messager.alert('提示', '第" + i.ToString() + "行,导入模板中计划已存在该序号,故无法导入', 'warning');</script>");
|
|
return;
|
|
}
|
|
|
|
#endregion
|
|
|
|
tb_Plan_243 md = new tb_Plan_243();
|
|
md.ID = Guid.NewGuid().ToString();
|
|
md.CreateTime = DateTime.Now;
|
|
md.LyCount = 0;
|
|
md.RepairCount = 0;
|
|
md.ScrapCount1 = 0;
|
|
md.ScrapCount2 = 0;
|
|
md.CompleteCount = 0;
|
|
md.IsFinish = 0;
|
|
|
|
md.OrderNo = OrderNo;
|
|
md.PartNo = PartNo;
|
|
md.Des = "";
|
|
md.Item = int_item;
|
|
md.OrderCount = int_planCount;
|
|
list.Add(md);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
#region 存储数据
|
|
try
|
|
{
|
|
if (list.Count > 0)
|
|
{
|
|
foreach (var item in list)
|
|
{
|
|
bll.AddInfo(item);
|
|
}
|
|
}
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
return;
|
|
}
|
|
#endregion
|
|
|
|
#region 展示数据
|
|
//SearchData();
|
|
//BindSelectData();
|
|
#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;
|
|
}
|
|
}
|
|
}
|
|
}
|