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.
141 lines
3.7 KiB
141 lines
3.7 KiB
using MESClassLibrary.BLL.BasicInfo;
|
|
using MESClassLibrary.EFModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace MESWebSite.HttpHandlers
|
|
{
|
|
/// <summary>
|
|
/// LineHandler 的摘要说明
|
|
/// </summary>
|
|
public class LineHandler : 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 LineName = Request.Params["LineName"];
|
|
string PlaceID = Request.Params["PlaceID"];
|
|
string userID = "";
|
|
if (Request.Cookies["LoginUserInfo"] != null)
|
|
{
|
|
userID = Request.Cookies["LoginUserInfo"]["UserID"].Trim();
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(page))
|
|
{
|
|
page = "0";
|
|
}
|
|
if (string.IsNullOrEmpty(pagesize))
|
|
{
|
|
pagesize = "15";
|
|
}
|
|
LineBLL bll = new LineBLL();
|
|
Response.Write(bll.SearchInfo(page, pagesize, LineName, PlaceID, userID));
|
|
Response.End();
|
|
|
|
|
|
}
|
|
void SaveInfo()
|
|
{
|
|
string LineID = Request.Params["LineID"];
|
|
string PlaceID = Request.Params["PlaceID"];
|
|
string LineName = Request.Params["LineName"];
|
|
string Des = Request.Params["Des"];
|
|
|
|
LineBLL bll = new LineBLL();
|
|
tb_Line md = new tb_Line();
|
|
|
|
md.PlaceID = PlaceID;
|
|
md.LineName = LineName;
|
|
md.Des = Des;
|
|
var info = Request.Cookies.Get("LoginUserInfo");
|
|
if (info != null)
|
|
{
|
|
md.UserID = info["UserID"].ToUpper();
|
|
}
|
|
if (LineID == "0")
|
|
{
|
|
//新增
|
|
md.LineID = Guid.NewGuid().ToString();
|
|
Response.Write(bll.AddInfo(md) == true ? "true" : "false");
|
|
}
|
|
else
|
|
{
|
|
//修改
|
|
md.LineID = LineID;
|
|
Response.Write(bll.UpdateInfo(md) == true ? "true" : "false");
|
|
}
|
|
Response.End();
|
|
}
|
|
void DelInfo()
|
|
{
|
|
string LineID = Request.Params["LineID"];
|
|
|
|
LineBLL bll = new LineBLL();
|
|
tb_Line md = new tb_Line();
|
|
md.LineID = LineID;
|
|
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()
|
|
{
|
|
LineBLL bll = new LineBLL();
|
|
Response.Write(bll.GetComboboxData());
|
|
Response.End();
|
|
|
|
}
|
|
}
|
|
}
|