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.
134 lines
3.5 KiB
134 lines
3.5 KiB
2 months ago
|
using MESClassLibrary.BLL.BasicInfo;
|
||
|
using MESClassLibrary.EFModel;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace MESWebSite.HttpHandlers
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// DefectHandler 的摘要说明
|
||
|
/// </summary>
|
||
|
public class DefectHandler : IHttpHandler
|
||
|
{
|
||
|
|
||
|
HttpRequest Request = null;
|
||
|
HttpResponse Response = null;
|
||
|
|
||
|
public void ProcessRequest(HttpContext context)
|
||
|
{
|
||
|
context.Response.ContentType = "text/plain";
|
||
|
Request = context.Request;
|
||
|
Response = context.Response;
|
||
|
|
||
|
string method = Request.Params["method"];
|
||
|
switch (method)
|
||
|
{
|
||
|
|
||
|
case "QueryList":
|
||
|
QueryList();
|
||
|
break;
|
||
|
case "SaveInfo":
|
||
|
SaveInfo();
|
||
|
break;
|
||
|
case "DelInfo":
|
||
|
DelInfo();
|
||
|
break;
|
||
|
case "QueryForCombobox":
|
||
|
QueryForCombobox();
|
||
|
break;
|
||
|
default:
|
||
|
break;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
public bool IsReusable
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void QueryList()
|
||
|
{
|
||
|
string page = Request.Params["page"];
|
||
|
string pagesize = Request.Params["rows"];
|
||
|
string DefectName = Request.Params["DefectName"];
|
||
|
string LineID = Request.Params["LineID"];
|
||
|
|
||
|
|
||
|
if (string.IsNullOrEmpty(page))
|
||
|
{
|
||
|
page = "0";
|
||
|
}
|
||
|
if (string.IsNullOrEmpty(pagesize))
|
||
|
{
|
||
|
pagesize = "15";
|
||
|
}
|
||
|
DefectBLL bll = new DefectBLL();
|
||
|
Response.Write(bll.SearchInfo(page, pagesize, DefectName, LineID));
|
||
|
Response.End();
|
||
|
|
||
|
|
||
|
}
|
||
|
void SaveInfo()
|
||
|
{
|
||
|
string ID = Request.Params["ID"];
|
||
|
string LineID = Request.Params["LineID"];
|
||
|
string DefectName = Request.Params["DefectName"];
|
||
|
string Des = Request.Params["Des"];
|
||
|
|
||
|
DefectBLL bll = new DefectBLL();
|
||
|
tb_Defect md = new tb_Defect();
|
||
|
|
||
|
md.LineID = LineID;
|
||
|
md.DefectName = DefectName;
|
||
|
md.Des = Des;
|
||
|
var info = Request.Cookies.Get("LoginUserInfo");
|
||
|
if (info != null)
|
||
|
{
|
||
|
md.UserID = info["UserID"].ToUpper();
|
||
|
}
|
||
|
if (ID == "0")
|
||
|
{
|
||
|
//新增
|
||
|
md.ID = Guid.NewGuid().ToString();
|
||
|
Response.Write(bll.AddInfo(md) == true ? "true" : "false");
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
//修改
|
||
|
md.ID = ID;
|
||
|
Response.Write(bll.UpdateInfo(md) == true ? "true" : "false");
|
||
|
}
|
||
|
Response.End();
|
||
|
}
|
||
|
void DelInfo()
|
||
|
{
|
||
|
string ID = Request.Params["ID"];
|
||
|
|
||
|
DefectBLL bll = new DefectBLL();
|
||
|
tb_Defect md = new tb_Defect();
|
||
|
md.ID = ID;
|
||
|
var info = Request.Cookies.Get("LoginUserInfo");
|
||
|
if (info != null)
|
||
|
{
|
||
|
md.UserID = info["UserID"].ToUpper();
|
||
|
}
|
||
|
Response.Write(bll.DelInfo(md) == true ? "true" : "false");
|
||
|
Response.End();
|
||
|
|
||
|
}
|
||
|
|
||
|
void QueryForCombobox()
|
||
|
{
|
||
|
DefectBLL bll = new DefectBLL();
|
||
|
Response.Write(bll.GetComboboxData());
|
||
|
Response.End();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|