43 changed files with 4743 additions and 727 deletions
@ -0,0 +1,254 @@ |
|||
using MESClassLibrary.BLL.Log; |
|||
using MESClassLibrary.EFModel; |
|||
using MESClassLibrary.Model; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.Linq; |
|||
using System.Reflection; |
|||
using System.Text; |
|||
using MESClassLibrary.DAL; |
|||
using MESClassLibrary.DAL.BasicInfo; |
|||
|
|||
namespace MESClassLibrary.BLL.BasicInfo |
|||
{ |
|||
public class XDCarModelBLL |
|||
{ |
|||
readonly BasicBLL<t_XD_CarModel> db = new BasicBLL<t_XD_CarModel>(); |
|||
|
|||
/// <summary>
|
|||
/// 新增信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool AddInfo(t_XD_CarModel md) |
|||
{ |
|||
try |
|||
{ |
|||
int? maxSort = db.SearchAllInfo().Max(p=>p.sort); |
|||
if(maxSort == null) |
|||
{ |
|||
maxSort = 0; |
|||
} |
|||
md.sort = maxSort + 1; |
|||
var list = db.SearchInfoByKey("Code", md.Code);//判断是否有重复数据
|
|||
if (list != null) |
|||
{ |
|||
if (list.Where(p => p.ID != md.ID).Count() > 0) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
//md.CreateTime = DateTime.Now;
|
|||
var result = db.AddInfo(md); |
|||
return result; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 修改信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool UpdateInfo(t_XD_CarModel md) |
|||
{ |
|||
try |
|||
{ |
|||
var list = db.SearchAllInfo().Where(p => p.Code == md.Code && p.ID != md.ID).ToList();//判断是否有重复数据
|
|||
if (list.Count > 0) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
//初始化要更新的字段
|
|||
string[] proNames = new string[] { |
|||
"Code", |
|||
"Name", |
|||
"sort" |
|||
}; |
|||
|
|||
//必填字段初始化,如果不需要更新必填字段则设置为空即可,时间类型无需初始化
|
|||
//如果没有初始化必填字段,更新会报错
|
|||
//md.UpdateTime = DateTime.Now;
|
|||
|
|||
return db.UpdateInfo(md, proNames); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 删除信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <param name="flag"></param>
|
|||
/// <returns></returns>
|
|||
public bool DeleteInfo(t_XD_CarModel md) |
|||
{ |
|||
try |
|||
{ |
|||
return db.DelInfo(md); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询全部信息分页
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public string SearchInfoAll(string page, string pagesize, string name, string Code) |
|||
{ |
|||
try |
|||
{ |
|||
string jsonStr = "[]"; |
|||
int total = 0;//总行数
|
|||
IEnumerable<t_XD_CarModel> list = db.SearchAllInfo(); |
|||
|
|||
if (!string.IsNullOrEmpty(name)) |
|||
{ |
|||
list = list.Where(p => p.Name != null && p.Name.Contains(name)); |
|||
} |
|||
if (!string.IsNullOrEmpty(Code)) |
|||
{ |
|||
list = list.Where(p => p.Code != null && p.Code == Code); |
|||
} |
|||
|
|||
if (list.Any()) |
|||
{ |
|||
total = list.Count(); |
|||
|
|||
int Skipcount = (Convert.ToInt32(page) - 1) * Convert.ToInt32(pagesize); |
|||
list = list.Skip(Skipcount).Take(Convert.ToInt32(pagesize)); |
|||
|
|||
//var manufactureBll = new ManufactureBLL();
|
|||
//var manufacture = manufactureBll.SearchAll();
|
|||
|
|||
|
|||
|
|||
JsonDataModel<t_XD_CarModel> md = new JsonDataModel<t_XD_CarModel> |
|||
{ |
|||
total = total.ToString(), |
|||
rows = list.ToList() |
|||
}; |
|||
|
|||
|
|||
jsonStr = md.ToSerializer(); |
|||
} |
|||
|
|||
return jsonStr; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询全部信息
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public List<t_XD_CarModel> SearchAll() |
|||
{ |
|||
try |
|||
{ |
|||
var s_list = db.SearchAllInfo().ToList(); |
|||
return s_list; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 根据ID查询信息
|
|||
/// </summary>
|
|||
/// <param name="id"></param>
|
|||
/// <returns></returns>
|
|||
public t_XD_CarModel SearchInfoByID(string id) |
|||
{ |
|||
try |
|||
{ |
|||
return db.SearchInfoByID(id); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
public string CarTypeCombo() |
|||
{ |
|||
return SearchAll().ToSerializer(); |
|||
} |
|||
|
|||
public DataTable SearchInfo() |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da=new CarTypeDAL(); |
|||
|
|||
return da.SearchInfo(); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public DataTable SearchInfoByName(string CarTypeName) |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da = new CarTypeDAL(); |
|||
|
|||
return da.SearchInfoByName(CarTypeName); |
|||
|
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public DataTable SearchInfo(string CarTypeName) |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da = new CarTypeDAL(); |
|||
|
|||
return da.SearchInfo(CarTypeName); |
|||
|
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,246 @@ |
|||
using MESClassLibrary.BLL.Log; |
|||
using MESClassLibrary.EFModel; |
|||
using MESClassLibrary.Model; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.Linq; |
|||
using System.Reflection; |
|||
using MESClassLibrary.DAL.BasicInfo; |
|||
|
|||
|
|||
namespace MESClassLibrary.BLL.BasicInfo |
|||
{ |
|||
|
|||
public class XDColorBLL |
|||
{ |
|||
BasicBLL<t_XD_Color> db = new BasicBLL<t_XD_Color>(); |
|||
|
|||
/// <summary>
|
|||
/// 新增信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool AddInfo(t_XD_Color md) |
|||
{ |
|||
try |
|||
{ |
|||
var list = db.SearchInfoByKey("Code", md.Code);//判断是否有重复数据
|
|||
if (list != null) |
|||
{ |
|||
if (list.Where(p => p.ID != md.ID).Count() > 0) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
//md.CreateTime = DateTime.Now;
|
|||
var result = db.AddInfo(md); |
|||
return result; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
/// <summary>
|
|||
/// 修改信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool UpdateInfo(t_XD_Color md) |
|||
{ |
|||
try |
|||
{ |
|||
//var list = db.SearchAllInfo().Where(p => p.ColorCode == md.ColorCode && p.ID != md.ID).ToList();//判断是否有重复数据
|
|||
//if (list.Count > 0)
|
|||
//{
|
|||
// return false;
|
|||
//}
|
|||
|
|||
//初始化要更新的字段
|
|||
string[] proNames = new string[5]; |
|||
proNames[0] = "Code"; |
|||
proNames[1] = "Name"; |
|||
proNames[2] = "Color"; |
|||
proNames[3] = "CarModelCode"; |
|||
proNames[4] = "ForeColor"; |
|||
|
|||
//必填字段初始化,如果不需要更新必填字段则设置为空即可,时间类型无需初始化
|
|||
//如果没有初始化必填字段,更新会报错
|
|||
//md.Des = "";
|
|||
|
|||
return db.UpdateInfo(md, proNames); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 删除信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <param name="flag"></param>
|
|||
/// <returns></returns>
|
|||
public bool DeleteInfo(t_XD_Color md) |
|||
{ |
|||
try |
|||
{ |
|||
return db.DelInfo(md); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询全部信息分页
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public string SearchInfoAll(string page, string pagesize,string Name, string Code, string Color) |
|||
{ |
|||
try |
|||
{ |
|||
string jsonStr = "[]"; |
|||
int total = 0;//总行数
|
|||
|
|||
List<t_XD_Color> list = db.SearchAllInfo(); |
|||
|
|||
if (!String.IsNullOrEmpty(Code)) |
|||
{ |
|||
list = list.Where(p => p.Code != null && p.Code.Contains(Code)).ToList(); |
|||
} |
|||
if (!String.IsNullOrEmpty(Name)) |
|||
{ |
|||
list = list.Where(p => p.Name != null && p.Name.Contains(Name)).ToList(); |
|||
} |
|||
if (!String.IsNullOrEmpty(Color)) |
|||
{ |
|||
list = list.Where(p => p.Color != null && p.Color.Contains(Color)).ToList(); |
|||
} |
|||
|
|||
total = list.Count; |
|||
int Skipcount = (Convert.ToInt32(page) - 1) * Convert.ToInt32(pagesize); |
|||
list = list.Skip(Skipcount).Take(Convert.ToInt32(pagesize)).ToList(); |
|||
|
|||
JsonDataModel<t_XD_Color> md = new JsonDataModel<t_XD_Color>(); |
|||
md.total = total.ToString(); |
|||
md.rows = list; |
|||
return JSONTools.ScriptSerialize(md); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 根据ID查询信息
|
|||
/// </summary>
|
|||
/// <param name="id"></param>
|
|||
/// <returns></returns>
|
|||
public t_XD_Color SearchInfoByID(string id) |
|||
{ |
|||
try |
|||
{ |
|||
return db.SearchInfoByID(id); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
public string GetComboboxData() |
|||
{ |
|||
try |
|||
{ |
|||
string jsonStr = "[]"; |
|||
var list = db.SearchAllInfo().Select(p=>p.Code).Distinct().ToList();//判断是否有重复数据
|
|||
|
|||
List<SelectModel> sl = new List<SelectModel>(); |
|||
|
|||
foreach (var item in list) |
|||
{ |
|||
SelectModel md = new SelectModel(); |
|||
md.textField = item; |
|||
md.valueField = item; |
|||
sl.Add(md); |
|||
} |
|||
|
|||
jsonStr = JSONTools.ScriptSerialize(sl); |
|||
return jsonStr; |
|||
} |
|||
catch (Exception) |
|||
{ |
|||
return ""; |
|||
} |
|||
} |
|||
|
|||
public string GetComboboxColor() |
|||
{ |
|||
var list = db.SearchAllInfo().ToList(); |
|||
return list.ToSerializer(); |
|||
} |
|||
|
|||
public DataTable SearchAll() |
|||
{ |
|||
ColorDAL da = new ColorDAL(); |
|||
try |
|||
{ |
|||
return da.SearchInfoAll(); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public DataTable SearchByName(string color) |
|||
{ |
|||
ColorDAL da = new ColorDAL(); |
|||
try |
|||
{ |
|||
return da.SearchByName(color); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public bool IsExist(string color) |
|||
{ |
|||
try |
|||
{ |
|||
var list = db.SearchAllInfo().Where(p => p.Code.Equals(color)).ToList(); |
|||
if (list.Count > 0) |
|||
{ |
|||
return true; |
|||
} |
|||
|
|||
return false; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(),MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,249 @@ |
|||
using MESClassLibrary.BLL.Log; |
|||
using MESClassLibrary.EFModel; |
|||
using MESClassLibrary.Model; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Data; |
|||
using System.Linq; |
|||
using System.Reflection; |
|||
using System.Text; |
|||
using MESClassLibrary.DAL; |
|||
using MESClassLibrary.DAL.BasicInfo; |
|||
|
|||
namespace MESClassLibrary.BLL.BasicInfo |
|||
{ |
|||
public class XDStockAreaBLL |
|||
{ |
|||
readonly BasicBLL<t_XD_StockArea> db = new BasicBLL<t_XD_StockArea>(); |
|||
|
|||
/// <summary>
|
|||
/// 新增信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool AddInfo(t_XD_StockArea md) |
|||
{ |
|||
try |
|||
{ |
|||
|
|||
var list = db.SearchInfoByKey("Code", md.Code);//判断是否有重复数据
|
|||
if (list != null) |
|||
{ |
|||
if (list.Where(p => p.ID != md.ID).Count() > 0) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
//md.CreateTime = DateTime.Now;
|
|||
var result = db.AddInfo(md); |
|||
return result; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 修改信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <returns></returns>
|
|||
public bool UpdateInfo(t_XD_StockArea md) |
|||
{ |
|||
try |
|||
{ |
|||
var list = db.SearchAllInfo().Where(p => p.Code == md.Code && p.ID != md.ID).ToList();//判断是否有重复数据
|
|||
if (list.Count > 0) |
|||
{ |
|||
return false; |
|||
} |
|||
|
|||
//初始化要更新的字段
|
|||
string[] proNames = new string[] { |
|||
"Code", |
|||
"Name", |
|||
"U8Code" |
|||
}; |
|||
|
|||
//必填字段初始化,如果不需要更新必填字段则设置为空即可,时间类型无需初始化
|
|||
//如果没有初始化必填字段,更新会报错
|
|||
//md.UpdateTime = DateTime.Now;
|
|||
|
|||
return db.UpdateInfo(md, proNames); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 删除信息
|
|||
/// </summary>
|
|||
/// <param name="md"></param>
|
|||
/// <param name="flag"></param>
|
|||
/// <returns></returns>
|
|||
public bool DeleteInfo(t_XD_StockArea md) |
|||
{ |
|||
try |
|||
{ |
|||
return db.DelInfo(md); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return false; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询全部信息分页
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public string SearchInfoAll(string page, string pagesize, string name, string Code) |
|||
{ |
|||
try |
|||
{ |
|||
string jsonStr = "[]"; |
|||
int total = 0;//总行数
|
|||
IEnumerable<t_XD_StockArea> list = db.SearchAllInfo(); |
|||
|
|||
if (!string.IsNullOrEmpty(name)) |
|||
{ |
|||
list = list.Where(p => p.Name != null && p.Name.Contains(name)); |
|||
} |
|||
if (!string.IsNullOrEmpty(Code)) |
|||
{ |
|||
list = list.Where(p => p.Code != null && p.Code == Code); |
|||
} |
|||
|
|||
if (list.Any()) |
|||
{ |
|||
total = list.Count(); |
|||
|
|||
int Skipcount = (Convert.ToInt32(page) - 1) * Convert.ToInt32(pagesize); |
|||
list = list.Skip(Skipcount).Take(Convert.ToInt32(pagesize)); |
|||
|
|||
//var manufactureBll = new ManufactureBLL();
|
|||
//var manufacture = manufactureBll.SearchAll();
|
|||
|
|||
|
|||
|
|||
JsonDataModel<t_XD_StockArea> md = new JsonDataModel<t_XD_StockArea> |
|||
{ |
|||
total = total.ToString(), |
|||
rows = list.ToList() |
|||
}; |
|||
|
|||
|
|||
jsonStr = md.ToSerializer(); |
|||
} |
|||
|
|||
return jsonStr; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 查询全部信息
|
|||
/// </summary>
|
|||
/// <returns></returns>
|
|||
public List<t_XD_StockArea> SearchAll() |
|||
{ |
|||
try |
|||
{ |
|||
var s_list = db.SearchAllInfo().ToList(); |
|||
return s_list; |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
/// <summary>
|
|||
/// 根据ID查询信息
|
|||
/// </summary>
|
|||
/// <param name="id"></param>
|
|||
/// <returns></returns>
|
|||
public t_XD_StockArea SearchInfoByID(string id) |
|||
{ |
|||
try |
|||
{ |
|||
return db.SearchInfoByID(id); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
|
|||
} |
|||
|
|||
public string CarTypeCombo() |
|||
{ |
|||
return SearchAll().ToSerializer(); |
|||
} |
|||
|
|||
public DataTable SearchInfo() |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da=new CarTypeDAL(); |
|||
|
|||
return da.SearchInfo(); |
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public DataTable SearchInfoByName(string CarTypeName) |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da = new CarTypeDAL(); |
|||
|
|||
return da.SearchInfoByName(CarTypeName); |
|||
|
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
public DataTable SearchInfo(string CarTypeName) |
|||
{ |
|||
try |
|||
{ |
|||
CarTypeDAL da = new CarTypeDAL(); |
|||
|
|||
return da.SearchInfo(CarTypeName); |
|||
|
|||
} |
|||
catch (Exception ex) |
|||
{ |
|||
LogErrBLL.AddInfo(ex.ToString(), MethodBase.GetCurrentMethod()); |
|||
return null; |
|||
} |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,33 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class W_XD_ProductCustomer |
|||
{ |
|||
public int ID { get; set; } |
|||
public int ProductID { get; set; } |
|||
public string CustomerProductNo { get; set; } |
|||
public Nullable<bool> IsCount { get; set; } |
|||
public Nullable<bool> IsDateCount { get; set; } |
|||
public Nullable<System.DateTime> YDate { get; set; } |
|||
public Nullable<int> DateCount { get; set; } |
|||
public Nullable<int> YCount { get; set; } |
|||
public Nullable<int> MaxCount { get; set; } |
|||
public string BarCode { get; set; } |
|||
public string ZPL2 { get; set; } |
|||
public string ZPLFile { get; set; } |
|||
public string CountType { get; set; } |
|||
public string PrintMode { get; set; } |
|||
public Nullable<bool> IsEnable { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,64 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class W_XD_Product_del |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
public string TypeCode { get; set; } |
|||
public string Model { get; set; } |
|||
public string UnitCode { get; set; } |
|||
public string CarModelCode { get; set; } |
|||
public string ColorCode { get; set; } |
|||
public Nullable<int> PullQty { get; set; } |
|||
public Nullable<int> MinQty { get; set; } |
|||
public Nullable<int> MaxQty { get; set; } |
|||
public Nullable<int> SafeQty { get; set; } |
|||
public Nullable<int> StockQty { get; set; } |
|||
public string StockAreaCode { get; set; } |
|||
public Nullable<int> IsPackage { get; set; } |
|||
public Nullable<int> IsMix { get; set; } |
|||
public Nullable<int> IsMixType { get; set; } |
|||
public string ProjectNumber { get; set; } |
|||
public string ProjectName { get; set; } |
|||
public string PCode { get; set; } |
|||
public Nullable<int> Layer1 { get; set; } |
|||
public Nullable<int> Layer2 { get; set; } |
|||
public Nullable<int> ShelfCode1 { get; set; } |
|||
public Nullable<int> ShelfCode2 { get; set; } |
|||
public string QState { get; set; } |
|||
public string SjCode { get; set; } |
|||
public string LU1 { get; set; } |
|||
public string LU2 { get; set; } |
|||
public string LU3 { get; set; } |
|||
public string LU4 { get; set; } |
|||
public string LU5 { get; set; } |
|||
public string LU6 { get; set; } |
|||
public string LU7 { get; set; } |
|||
public string LU8 { get; set; } |
|||
public string LU9 { get; set; } |
|||
public string LU10 { get; set; } |
|||
public string ShipType { get; set; } |
|||
public Nullable<int> PackageQty { get; set; } |
|||
public Nullable<int> PackageQtyTray { get; set; } |
|||
public Nullable<decimal> StandardWeight1 { get; set; } |
|||
public Nullable<decimal> StandardWeight2 { get; set; } |
|||
public string Userdefined1 { get; set; } |
|||
public string Userdefined2 { get; set; } |
|||
public string Userdefined3 { get; set; } |
|||
public string Userdefined4 { get; set; } |
|||
public string Userdefined5 { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,39 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_BarCode |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string ProductCode { get; set; } |
|||
public string Batch { get; set; } |
|||
public Nullable<int> Qty { get; set; } |
|||
public Nullable<System.DateTime> AddTime { get; set; } |
|||
public string UserName { get; set; } |
|||
public string BatchGys { get; set; } |
|||
public string ImNumber { get; set; } |
|||
public string ProductCodeY { get; set; } |
|||
public string BatchY { get; set; } |
|||
public string Memo { get; set; } |
|||
public string OrderNumber { get; set; } |
|||
public string LineNumber { get; set; } |
|||
public string BcName { get; set; } |
|||
public string SupplierCode { get; set; } |
|||
public string BatchYqj { get; set; } |
|||
public string SupplierYqj { get; set; } |
|||
public string SupplierYqj1 { get; set; } |
|||
public string SupplierYqj2 { get; set; } |
|||
public Nullable<int> Weight { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,34 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_BarCodeState |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string BarCode { get; set; } |
|||
public string ProductCode { get; set; } |
|||
public string Batch { get; set; } |
|||
public string ProductType { get; set; } |
|||
public string Type { get; set; } |
|||
public string Name { get; set; } |
|||
public string State { get; set; } |
|||
public Nullable<int> OnlineCount { get; set; } |
|||
public string Quality { get; set; } |
|||
public Nullable<System.DateTime> AddTime { get; set; } |
|||
public string UserName { get; set; } |
|||
public string RejectName { get; set; } |
|||
public string SupplierYqj { get; set; } |
|||
public string SupplierYqj1 { get; set; } |
|||
public string SupplierYqj2 { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_CarModel |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
public Nullable<int> sort { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,24 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_Color |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
public string Color { get; set; } |
|||
public string CarModelCode { get; set; } |
|||
public string ForeColor { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,64 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_Product |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
public string TypeCode { get; set; } |
|||
public string Model { get; set; } |
|||
public string UnitCode { get; set; } |
|||
public string CarModelCode { get; set; } |
|||
public string ColorCode { get; set; } |
|||
public Nullable<int> PullQty { get; set; } |
|||
public Nullable<int> MinQty { get; set; } |
|||
public Nullable<int> MaxQty { get; set; } |
|||
public Nullable<int> SafeQty { get; set; } |
|||
public Nullable<int> StockQty { get; set; } |
|||
public string StockAreaCode { get; set; } |
|||
public Nullable<int> IsPackage { get; set; } |
|||
public Nullable<int> IsMix { get; set; } |
|||
public Nullable<int> IsMixType { get; set; } |
|||
public string ProjectNumber { get; set; } |
|||
public string ProjectName { get; set; } |
|||
public string PCode { get; set; } |
|||
public Nullable<int> Layer1 { get; set; } |
|||
public Nullable<int> Layer2 { get; set; } |
|||
public Nullable<int> ShelfCode1 { get; set; } |
|||
public Nullable<int> ShelfCode2 { get; set; } |
|||
public string QState { get; set; } |
|||
public string SjCode { get; set; } |
|||
public string LU1 { get; set; } |
|||
public string LU2 { get; set; } |
|||
public string LU3 { get; set; } |
|||
public string LU4 { get; set; } |
|||
public string LU5 { get; set; } |
|||
public string LU6 { get; set; } |
|||
public string LU7 { get; set; } |
|||
public string LU8 { get; set; } |
|||
public string LU9 { get; set; } |
|||
public string LU10 { get; set; } |
|||
public string ShipType { get; set; } |
|||
public Nullable<int> PackageQty { get; set; } |
|||
public Nullable<int> PackageQtyTray { get; set; } |
|||
public Nullable<decimal> StandardWeight1 { get; set; } |
|||
public Nullable<decimal> StandardWeight2 { get; set; } |
|||
public string Userdefined1 { get; set; } |
|||
public string Userdefined2 { get; set; } |
|||
public string Userdefined3 { get; set; } |
|||
public string Userdefined4 { get; set; } |
|||
public string Userdefined5 { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,21 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_ProductType |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,22 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_StockArea |
|||
{ |
|||
public decimal ID { get; set; } |
|||
public string Code { get; set; } |
|||
public string Name { get; set; } |
|||
public string U8Code { get; set; } |
|||
} |
|||
} |
@ -0,0 +1,24 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <auto-generated>
|
|||
// 此代码已从模板生成。
|
|||
//
|
|||
// 手动更改此文件可能导致应用程序出现意外的行为。
|
|||
// 如果重新生成代码,将覆盖对此文件的手动更改。
|
|||
// </auto-generated>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESClassLibrary.EFModel |
|||
{ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
public partial class t_XD_User |
|||
{ |
|||
public decimal User_ID { get; set; } |
|||
public string User_Name { get; set; } |
|||
public string User_Password { get; set; } |
|||
public string User_Memo { get; set; } |
|||
public Nullable<bool> User_Enabled { get; set; } |
|||
public string StockAreaCode { get; set; } |
|||
} |
|||
} |
@ -0,0 +1 @@ |
|||
<%@ WebHandler Language="C#" CodeBehind="XDCarModelHandler.ashx.cs" Class="MESWebSite.HttpHandlers.XDCarModelHandler" %> |
@ -0,0 +1,87 @@ |
|||
using MESClassLibrary.BLL.BasicInfo; |
|||
using MESClassLibrary.EFModel; |
|||
using MESWebSite.CommonClass; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
|
|||
namespace MESWebSite.HttpHandlers |
|||
{ |
|||
/// <summary>
|
|||
/// CarTypeHandler 的摘要说明
|
|||
/// </summary>
|
|||
public class XDCarModelHandler : BaseHandler |
|||
{ |
|||
public XDCarModelHandler() : base() |
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
protected override void QueryList() |
|||
{ |
|||
string page = GetParam("page").DefaultValue("0"); |
|||
string rows = GetParam("rows").DefaultValue("15"); |
|||
string carTypeName = GetParam("CarTypeName"); |
|||
string carTypeCode = GetParam("CarTypeCode"); |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
Response.Write(bll.SearchInfoAll(page, rows, carTypeName, carTypeCode)); |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void SaveInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
string carTypeName = GetParam("CarTypeName"); |
|||
string carTypeCode = GetParam("CarTypeCode"); |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
t_XD_CarModel md = new t_XD_CarModel |
|||
{ |
|||
ID = id, |
|||
Name = carTypeName, |
|||
Code = carTypeCode |
|||
}; |
|||
|
|||
//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) ? ResponseResult.Success() : ResponseResult.Fail("保存失败")); |
|||
} |
|||
else |
|||
{ |
|||
md.ID = id; |
|||
Response.Write(bll.UpdateInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("更新失败")); |
|||
} |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void DelInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
if (id == 0) return; |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
t_XD_CarModel md = new t_XD_CarModel { ID = id }; |
|||
var info = Request.Cookies.Get("LoginUserInfo"); |
|||
//if (info != null)
|
|||
//{
|
|||
// md.UserID = info["UserID"].ToUpper();
|
|||
//}
|
|||
|
|||
Response.Write(bll.DeleteInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("删除失败")); |
|||
Response.End(); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1 @@ |
|||
<%@ WebHandler Language="C#" CodeBehind="XDColorHandler.ashx.cs" Class="MESWebSite.HttpHandlers.XDColorHandler" %> |
@ -0,0 +1,88 @@ |
|||
using MESClassLibrary.BLL.BasicInfo; |
|||
using MESClassLibrary.EFModel; |
|||
using MESWebSite.CommonClass; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
|
|||
namespace MESWebSite.HttpHandlers |
|||
{ |
|||
/// <summary>
|
|||
/// CarTypeHandler 的摘要说明
|
|||
/// </summary>
|
|||
public class XDColorHandler : BaseHandler |
|||
{ |
|||
public XDColorHandler() : base() |
|||
{ |
|||
|
|||
} |
|||
|
|||
|
|||
protected override void QueryList() |
|||
{ |
|||
string page = GetParam("page").DefaultValue("0"); |
|||
string rows = GetParam("rows").DefaultValue("15"); |
|||
string Name = GetParam("Name"); |
|||
string Code = GetParam("Code"); |
|||
string Color = GetParam("Color"); |
|||
XDColorBLL bll = new XDColorBLL(); |
|||
Response.Write(bll.SearchInfoAll(page, rows, Name, Code, Color)); |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void SaveInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
string code = GetParam("Code"); |
|||
string name = GetParam("Name"); |
|||
string color = GetParam("Color"); |
|||
string carModelCode = GetParam("CarModelCode"); |
|||
string foreColor = GetParam("ForeColor"); |
|||
XDColorBLL bll = new XDColorBLL(); |
|||
t_XD_Color md = new t_XD_Color |
|||
{ |
|||
ID = id, |
|||
Name = name, |
|||
Code = code, |
|||
Color = color, |
|||
CarModelCode = carModelCode, |
|||
ForeColor = foreColor, |
|||
}; |
|||
|
|||
|
|||
if (ID == "0") |
|||
{ |
|||
//md.ID = Guid.NewGuid().ToString();
|
|||
Response.Write(bll.AddInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("保存失败")); |
|||
} |
|||
else |
|||
{ |
|||
md.ID = id; |
|||
Response.Write(bll.UpdateInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("更新失败")); |
|||
} |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void DelInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
if (id == 0) return; |
|||
XDColorBLL bll = new XDColorBLL(); |
|||
t_XD_Color md = new t_XD_Color { ID = id }; |
|||
var info = Request.Cookies.Get("LoginUserInfo"); |
|||
//if (info != null)
|
|||
//{
|
|||
// md.UserID = info["UserID"].ToUpper();
|
|||
//}
|
|||
|
|||
Response.Write(bll.DeleteInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("删除失败")); |
|||
Response.End(); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1 @@ |
|||
<%@ WebHandler Language="C#" CodeBehind="XDProductHandler.ashx.cs" Class="MESWebSite.HttpHandlers.XDProductHandler" %> |
@ -0,0 +1,93 @@ |
|||
using MESClassLibrary.BLL.BasicInfo; |
|||
using MESClassLibrary.EFModel; |
|||
using MESWebSite.CommonClass; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
|
|||
namespace MESWebSite.HttpHandlers |
|||
{ |
|||
/// <summary>
|
|||
/// CarTypeHandler 的摘要说明
|
|||
/// </summary>
|
|||
public class XDProductHandler : BaseHandler |
|||
{ |
|||
public XDProductHandler() : base() |
|||
{ |
|||
//RegisterAction(CarTypeCombo);
|
|||
} |
|||
|
|||
private void CarTypeCombo() |
|||
{ |
|||
CarTypeBLL bll = new CarTypeBLL(); |
|||
Response.Write(bll.CarTypeCombo()); |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void QueryList() |
|||
{ |
|||
string page = GetParam("page").DefaultValue("0"); |
|||
string rows = GetParam("rows").DefaultValue("15"); |
|||
string carTypeName = GetParam("CarTypeName"); |
|||
string carTypeCode = GetParam("CarTypeCode"); |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
Response.Write(bll.SearchInfoAll(page, rows, carTypeName, carTypeCode)); |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void SaveInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
string carTypeName = GetParam("CarTypeName"); |
|||
string carTypeCode = GetParam("CarTypeCode"); |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
t_XD_CarModel md = new t_XD_CarModel |
|||
{ |
|||
ID = id, |
|||
Name = carTypeName, |
|||
Code = carTypeCode |
|||
}; |
|||
|
|||
//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) ? ResponseResult.Success() : ResponseResult.Fail("保存失败")); |
|||
} |
|||
else |
|||
{ |
|||
md.ID = id; |
|||
Response.Write(bll.UpdateInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("更新失败")); |
|||
} |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void DelInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
if (id == 0) return; |
|||
XDCarModelBLL bll = new XDCarModelBLL(); |
|||
t_XD_CarModel md = new t_XD_CarModel { ID = id }; |
|||
var info = Request.Cookies.Get("LoginUserInfo"); |
|||
//if (info != null)
|
|||
//{
|
|||
// md.UserID = info["UserID"].ToUpper();
|
|||
//}
|
|||
|
|||
Response.Write(bll.DeleteInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("删除失败")); |
|||
Response.End(); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1 @@ |
|||
<%@ WebHandler Language="C#" CodeBehind="XDStockAreaHandler.ashx.cs" Class="MESWebSite.HttpHandlers.XDStockAreaHandler" %> |
@ -0,0 +1,88 @@ |
|||
using MESClassLibrary.BLL.BasicInfo; |
|||
using MESClassLibrary.EFModel; |
|||
using MESWebSite.CommonClass; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
|
|||
namespace MESWebSite.HttpHandlers |
|||
{ |
|||
/// <summary>
|
|||
/// CarTypeHandler 的摘要说明
|
|||
/// </summary>
|
|||
public class XDStockAreaHandler : BaseHandler |
|||
{ |
|||
public XDStockAreaHandler() : base() |
|||
{ |
|||
} |
|||
|
|||
|
|||
protected override void QueryList() |
|||
{ |
|||
string page = GetParam("page").DefaultValue("0"); |
|||
string rows = GetParam("rows").DefaultValue("15"); |
|||
string code = GetParam("Code"); |
|||
string name = GetParam("Name"); |
|||
XDStockAreaBLL bll = new XDStockAreaBLL(); |
|||
Response.Write(bll.SearchInfoAll(page, rows, code, code)); |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void SaveInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
string Name = GetParam("Name"); |
|||
string Code = GetParam("Code"); |
|||
string U8Code = GetParam("U8Code"); |
|||
XDStockAreaBLL bll = new XDStockAreaBLL(); |
|||
t_XD_StockArea md = new t_XD_StockArea |
|||
{ |
|||
ID = id, |
|||
Name = Name, |
|||
Code = Code, |
|||
U8Code = U8Code |
|||
}; |
|||
|
|||
//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) ? ResponseResult.Success() : ResponseResult.Fail("保存失败")); |
|||
} |
|||
else |
|||
{ |
|||
md.ID = id; |
|||
Response.Write(bll.UpdateInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("更新失败")); |
|||
} |
|||
Response.End(); |
|||
} |
|||
|
|||
protected override void DelInfo() |
|||
{ |
|||
string ID = GetParam("ID"); |
|||
int id = 0; |
|||
int.TryParse(ID, out id); |
|||
if (id == 0) return; |
|||
XDStockAreaBLL bll = new XDStockAreaBLL(); |
|||
t_XD_StockArea md = new t_XD_StockArea { ID = id }; |
|||
var info = Request.Cookies.Get("LoginUserInfo"); |
|||
//if (info != null)
|
|||
//{
|
|||
// md.UserID = info["UserID"].ToUpper();
|
|||
//}
|
|||
|
|||
Response.Write(bll.DeleteInfo(md) ? ResponseResult.Success() : ResponseResult.Fail("删除失败")); |
|||
Response.End(); |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,356 @@ |
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="XDCarModel.aspx.cs" Inherits="MESWebSite.Manage.XDCarModel" %> |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head runat="server"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<link href="/CSS/Basics.css" rel="stylesheet" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" /> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> |
|||
<script src="/Scripts/MyJs.js" type="text/javascript"></script> |
|||
<style> |
|||
#w td { |
|||
padding: 5px 5px; |
|||
text-align: left; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
#w .title { |
|||
vertical-align: middle; |
|||
text-align: right; |
|||
width: 80px; |
|||
height: 40px; |
|||
} |
|||
|
|||
p { |
|||
padding: 5px; |
|||
font-size: small; |
|||
font-family: 微软雅黑; |
|||
} |
|||
|
|||
.datagrid { |
|||
text-align: center; |
|||
} |
|||
.search_first{ |
|||
margin-left: 34.5% |
|||
} |
|||
/* 中等屏幕 桌面显示器 992至1400 */ |
|||
@media screen and (min-width:992px) and (max-width:1400px){ |
|||
.search_first{ |
|||
margin-left: 3% |
|||
} |
|||
} |
|||
</style> |
|||
<title>现代车型</title> |
|||
</head> |
|||
<body> |
|||
<form id="form1" runat="server"> |
|||
<div class="top"> |
|||
<table style="width: 100%"> |
|||
<tr style="display: flex;flex-direction: row; flex-wrap: wrap;"> |
|||
<td ><span class="title" style="width: 150px">车型</span> |
|||
</td> |
|||
<td style="width: 100px;"></td> |
|||
<td style="width: 280px;">车型名称: |
|||
<input id="cartype_name_s" type="text" value="" /> |
|||
</td> |
|||
<td style="width: 250px;"> 车型编号: |
|||
<input id="cartype_code_s" type="text" value="" style="width: 140px;"/> |
|||
</td> |
|||
<td style="width: 80px"><a class="topsearchBtn">查询1</a></td> |
|||
|
|||
<td style="width: 80px"> |
|||
<a class="topaddBtn">新增</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="toppenBtn">编辑</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="topdelBtn">删除</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
<table id="tb" title="车型" style="width: 99%;"> |
|||
</table> |
|||
<!-- 编辑窗口 --> |
|||
<div id="w" style="padding: 10px; visibility: hidden" title="编辑"> |
|||
<table cellpadding="0" cellspacing="0"> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
车型名称: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="cartype_name" type="text" style="width: 230px; height: 30px" /><span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
车型编号: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="cartype_Code" type="text" style="width: 230px; height: 30px" /> |
|||
<span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
|
|||
</td> |
|||
</tr> |
|||
|
|||
</table> |
|||
</div> |
|||
<!-- 编辑窗口 - footer --> |
|||
<div id="ft" style="padding: 10px; text-align: center; background-color: #f9f9f9; visibility: hidden"> |
|||
<a class="saveBtn" id="saveBtn">保存</a> |
|||
</div> |
|||
|
|||
<div hidden="hidden"> |
|||
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label> |
|||
</div> |
|||
<input id="UserID" type="text" hidden="hidden" runat="server" /> |
|||
<script> |
|||
|
|||
/**************** 全局变量 ***************/ |
|||
var PrimaryID; //要编辑的id |
|||
var dg = $('#tb'); //表格 |
|||
var isEdit = false; //是否为编辑状态 |
|||
var handlerUrl = "/HttpHandlers/XDCarModelHandler.ashx"; |
|||
|
|||
/**************** DOM加载 ***************/ |
|||
$(function () { |
|||
$.ajaxSetup({ |
|||
cache: false //关闭AJAX缓存 |
|||
}); |
|||
|
|||
//// 下拉框加载 |
|||
//reload_manufacturer_combo('#manufacturer_id_s'); |
|||
//reload_manufacturer_combo('#manufacturer_id'); |
|||
//新增按钮点击 |
|||
$('.topaddBtn').first().click(function () { |
|||
isEdit = false; |
|||
$('#w').window('open'); |
|||
}); |
|||
|
|||
//编辑按钮点击 |
|||
$('.toppenBtn').first().click(function () { |
|||
isEdit = true; |
|||
|
|||
initEidtWidget(); |
|||
}); |
|||
|
|||
//删除按钮 |
|||
$('.topdelBtn').first().click(function () { |
|||
$.messager.confirm('提示框', '你确定要删除吗?', function (r) { |
|||
if (r) { |
|||
deleteInfos(); |
|||
} |
|||
}); |
|||
|
|||
}); |
|||
|
|||
//搜索按钮 |
|||
$('.topsearchBtn').first().click(function () { |
|||
|
|||
SearchInfo(); |
|||
}); |
|||
|
|||
//保存按钮 |
|||
$('#saveBtn').bind('click', function () { |
|||
SaveInfo(isEdit); |
|||
}); |
|||
|
|||
//编辑窗口加载 |
|||
$('#w').window({ |
|||
modal: true, |
|||
closed: true, |
|||
minimizable: false, |
|||
maximizable: false, |
|||
collapsible: false, |
|||
width: 460, |
|||
height: 520, |
|||
footer: '#ft', |
|||
top: 20, |
|||
onBeforeClose: function () { clearw(); }, |
|||
onBeforeOpen: function () { |
|||
$('#w').css('visibility', 'visible'); $('#ft').css('visibility', 'visible'); |
|||
} |
|||
|
|||
}); |
|||
|
|||
dg = $('#tb').datagrid({ |
|||
fitColumns: true, |
|||
nowrap: false, |
|||
striped: true, |
|||
collapsible: false, |
|||
url: handlerUrl + "?method=QueryList", |
|||
//sortName: 'sortNumber', |
|||
//sortOrder: 'asc', |
|||
remoteSort: false, |
|||
columns: [[ |
|||
{ field: 'ID', title: 'ID', hidden: true }, |
|||
{ field: 'Name', title: '车型名称', sortable: 'true', width: 10 }, |
|||
{ field: 'Code', title: '车型编号', sortable: 'true', width: 10 } |
|||
]], |
|||
|
|||
pagination: true,//表示在datagrid设置分页 |
|||
rownumbers: true, |
|||
singleSelect: true |
|||
}); |
|||
dg.datagrid('getPager').pagination({ |
|||
pageSize: 10, |
|||
pageNumber: 1, |
|||
pageList: [10, 20, 30, 40, 50], |
|||
beforePageText: '第',//页数文本框前显示的汉字 |
|||
afterPageText: '页 共 {pages} 页', |
|||
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录', |
|||
}); |
|||
}); |
|||
|
|||
/**************** 主要业务程序 ***************/ |
|||
//新增 / 编辑 |
|||
function SaveInfo(isEdit) { |
|||
|
|||
var ID = isEdit == true ? PrimaryID : 0; |
|||
var CarTypeName = $('#cartype_name').val(); |
|||
var CarTypeCode = $('#cartype_Code').val(); |
|||
|
|||
if (CarTypeName == "") { |
|||
$.messager.alert('提示', '车型名称不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
if (CarTypeCode == "") { |
|||
$.messager.alert('提示', '车型编号不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
var model = { |
|||
ID, |
|||
CarTypeName, |
|||
CarTypeCode, |
|||
method: 'SaveInfo' |
|||
}; |
|||
SaveModel(model); |
|||
} |
|||
function SaveModel(model) { |
|||
$.ajax({ |
|||
type: "POST", |
|||
async: false, |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已保存', 'info'); |
|||
dg.datagrid('reload'); |
|||
$('#w').window('close'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '保存失败,请查看是否名称重复', 'warning'); |
|||
} |
|||
|
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
//查询方法 |
|||
function SearchInfo() { |
|||
alert('123123123'); |
|||
var CarTypeName = $('#cartype_name_s').val(); |
|||
alert(CarTypeName); |
|||
var CarTypeCode = $('#cartype_code_s').val(); |
|||
alert(CarTypeCode); |
|||
dg.datagrid({ |
|||
queryParams: { CarTypeName, CarTypeCode } |
|||
}); |
|||
|
|||
dg.datagrid('reload'); |
|||
} |
|||
////编辑时加载窗体数据 |
|||
function initEidtWidget() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
|
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能编辑一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行编辑', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
//窗体数据初始化 |
|||
var row = selRows[0]; |
|||
|
|||
PrimaryID = row.ID; |
|||
$('#cartype_name').val(row.Name); |
|||
$('#cartype_Code').val(row.Code);s |
|||
$('#w').window('open'); |
|||
} |
|||
//删除方法 |
|||
function deleteInfos() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能删除一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行删除', 'warning'); |
|||
return; |
|||
} |
|||
var row = selRows[0]; |
|||
|
|||
var model = { |
|||
ID: row.ID, |
|||
method: 'DelInfo' |
|||
}; |
|||
|
|||
$.ajax({ |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
async: false, |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已删除', 'info'); |
|||
dg.datagrid('reload'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '由于有关联数据,删除失败', 'warning'); |
|||
} |
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
|
|||
/**************** 辅助业务程序 ***************/ |
|||
/**********************************************/ |
|||
/***************** 窗体程序 *******************/ |
|||
/**********************************************/ |
|||
//编辑窗口关闭清空数据 |
|||
function clearw() { |
|||
$('#cartype_name').val(''); |
|||
$('#cartype_code').val(''); |
|||
} |
|||
|
|||
/** |
|||
* 加载厂家下拉信息 |
|||
**/ |
|||
//function reload_manufacturer_combo(ctl) { |
|||
// base_reload_combobox(ctl, '/HttpHandlers/ManufacturerHandler.ashx?method=MenufacturerCombo'); |
|||
//} |
|||
|
|||
//function base_reload_combobox(ctl, url) { |
|||
// $(ctl).combobox('reload', url); |
|||
//} |
|||
|
|||
</script> |
|||
</form> |
|||
</body> |
|||
</html> |
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
public partial class XDCarModel : System.Web.UI.Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
if (Request.Cookies["LoginUserInfo"] == null) |
|||
{ |
|||
Response.Write("<script language=javascript>alert('您的登录信息已过期,请重新登录!');top.location.href='../Login.aspx';</script>"); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <自动生成>
|
|||
// 此代码由工具生成。
|
|||
//
|
|||
// 对此文件的更改可能导致不正确的行为,如果
|
|||
// 重新生成代码,则所做更改将丢失。
|
|||
// </自动生成>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
|
|||
|
|||
public partial class XDCarModel |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// form1 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlForm form1; |
|||
|
|||
/// <summary>
|
|||
/// lblMessage 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.Label lblMessage; |
|||
|
|||
/// <summary>
|
|||
/// UserID 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlInputText UserID; |
|||
} |
|||
} |
@ -0,0 +1,408 @@ |
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="XDColor.aspx.cs" Inherits="MESWebSite.Manage.XDColor" %> |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head runat="server"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<link href="/CSS/Basics.css" rel="stylesheet" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" /> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> |
|||
<script src="/Scripts/MyJs.js" type="text/javascript"></script> |
|||
<style> |
|||
#w td { |
|||
padding: 5px 5px; |
|||
text-align: left; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
#w .title { |
|||
vertical-align: middle; |
|||
text-align: right; |
|||
width: 80px; |
|||
height: 40px; |
|||
} |
|||
|
|||
p { |
|||
padding: 5px; |
|||
font-size: small; |
|||
font-family: 微软雅黑; |
|||
} |
|||
|
|||
.datagrid { |
|||
text-align: center; |
|||
} |
|||
.search_first{ |
|||
margin-left: 34.5% |
|||
} |
|||
/* 中等屏幕 桌面显示器 992至1400 */ |
|||
@media screen and (min-width:992px) and (max-width:1400px){ |
|||
.search_first{ |
|||
margin-left: 3% |
|||
} |
|||
} |
|||
</style> |
|||
<title>现代颜色</title> |
|||
</head> |
|||
<body> |
|||
<form id="form1" runat="server"> |
|||
<div class="top"> |
|||
<table style="width: 100%"> |
|||
<tr style="display: flex;flex-direction: row; flex-wrap: wrap;"> |
|||
<td ><span class="title" style="width: 150px">车型</span> |
|||
</td> |
|||
<td style="width: 100px;"></td> |
|||
|
|||
<td style="width: 250px;"> 编号: |
|||
<input id="code_s" type="text" value="" style="width: 140px;"/> |
|||
</td> |
|||
<td style="width: 280px;">名称: |
|||
<input id="name_s" type="text" value="" /> |
|||
</td> |
|||
<td style="width: 280px;">颜色: |
|||
<input id="color_s" type="text" value="" /> |
|||
</td> |
|||
<td style="width: 80px"><a class="topsearchBtn">查询</a></td> |
|||
|
|||
<td style="width: 80px"> |
|||
<a class="topaddBtn">新增</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="toppenBtn">编辑</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="topdelBtn">删除</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
<table id="tb" title="颜色" style="width: 99%;"> |
|||
</table> |
|||
<!-- 编辑窗口 --> |
|||
<div id="w" style="padding: 10px; visibility: hidden" title="编辑"> |
|||
<table cellpadding="0" cellspacing="0"> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
颜色名称: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="_name" type="text" style="width: 230px; height: 30px" /><span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
颜色代码: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="_code" type="text" style="width: 230px; height: 30px" /> |
|||
<span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
|
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
颜色值: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="_color" type="text" style="width: 230px; height: 30px" /> |
|||
|
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
车型: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="_carmodelcode" type="text" style="width: 230px; height: 30px" /> |
|||
|
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
前部颜色: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="_forecolor" type="text" style="width: 230px; height: 30px" /> |
|||
|
|||
|
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
<!-- 编辑窗口 - footer --> |
|||
<div id="ft" style="padding: 10px; text-align: center; background-color: #f9f9f9; visibility: hidden"> |
|||
<a class="saveBtn" id="saveBtn">保存</a> |
|||
</div> |
|||
|
|||
<div hidden="hidden"> |
|||
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label> |
|||
</div> |
|||
<input id="UserID" type="text" hidden="hidden" runat="server" /> |
|||
<script> |
|||
|
|||
/**************** 全局变量 ***************/ |
|||
var PrimaryID; //要编辑的id |
|||
var dg = $('#tb'); //表格 |
|||
var isEdit = false; //是否为编辑状态 |
|||
var handlerUrl = "/HttpHandlers/XDColorHandler.ashx"; |
|||
|
|||
/**************** DOM加载 ***************/ |
|||
$(function () { |
|||
$.ajaxSetup({ |
|||
cache: false //关闭AJAX缓存 |
|||
}); |
|||
|
|||
//// 下拉框加载 |
|||
//reload_manufacturer_combo('#manufacturer_id_s'); |
|||
//reload_manufacturer_combo('#manufacturer_id'); |
|||
//新增按钮点击 |
|||
$('.topaddBtn').first().click(function () { |
|||
isEdit = false; |
|||
$('#w').window('open'); |
|||
}); |
|||
|
|||
//编辑按钮点击 |
|||
$('.toppenBtn').first().click(function () { |
|||
isEdit = true; |
|||
|
|||
initEidtWidget(); |
|||
}); |
|||
|
|||
//删除按钮 |
|||
$('.topdelBtn').first().click(function () { |
|||
$.messager.confirm('提示框', '你确定要删除吗?', function (r) { |
|||
if (r) { |
|||
deleteInfos(); |
|||
} |
|||
}); |
|||
|
|||
}); |
|||
|
|||
//搜索按钮 |
|||
$('.topsearchBtn').first().click(function () { |
|||
SearchInfo(); |
|||
}); |
|||
|
|||
//保存按钮 |
|||
$('#saveBtn').bind('click', function () { |
|||
SaveInfo(isEdit); |
|||
}); |
|||
|
|||
//编辑窗口加载 |
|||
$('#w').window({ |
|||
modal: true, |
|||
closed: true, |
|||
minimizable: false, |
|||
maximizable: false, |
|||
collapsible: false, |
|||
width: 460, |
|||
height: 520, |
|||
footer: '#ft', |
|||
top: 20, |
|||
onBeforeClose: function () { clearw(); }, |
|||
onBeforeOpen: function () { |
|||
$('#w').css('visibility', 'visible'); |
|||
$('#ft').css('visibility', 'visible'); |
|||
} |
|||
|
|||
}); |
|||
|
|||
dg = $('#tb').datagrid({ |
|||
fitColumns: true, |
|||
nowrap: false, |
|||
striped: true, |
|||
collapsible: false, |
|||
url: handlerUrl + "?method=QueryList", |
|||
//sortName: 'sortNumber', |
|||
//sortOrder: 'asc', |
|||
remoteSort: false, |
|||
columns: [[ |
|||
{ field: 'ID', title: 'ID', hidden: true }, |
|||
{ field: 'Code', title: '编号', sortable: 'true', width: 10 }, |
|||
{ field: 'Name', title: '名称', sortable: 'true', width: 10 }, |
|||
{ field: 'Color', title: '颜色', sortable: 'true', width: 10 }, |
|||
{ field: 'CarModelCode', title: '车型', sortable: 'true', width: 10 }, |
|||
{ field: 'ForeColor', title: '前景颜色', sortable: 'true', width: 10 }, |
|||
]], |
|||
|
|||
pagination: true,//表示在datagrid设置分页 |
|||
rownumbers: true, |
|||
singleSelect: true |
|||
}); |
|||
dg.datagrid('getPager').pagination({ |
|||
pageSize: 10, |
|||
pageNumber: 1, |
|||
pageList: [10, 20, 30, 40, 50], |
|||
beforePageText: '第',//页数文本框前显示的汉字 |
|||
afterPageText: '页 共 {pages} 页', |
|||
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录', |
|||
}); |
|||
}); |
|||
|
|||
/**************** 主要业务程序 ***************/ |
|||
//新增 / 编辑 |
|||
function SaveInfo(isEdit) { |
|||
|
|||
var ID = isEdit == true ? PrimaryID : 0; |
|||
|
|||
var Code = $('#_code').val(); |
|||
var Name = $('#_name').val(); |
|||
var Color = $('#_color').val(); |
|||
var CarModelCode = $('#_carmodelcode').val(); |
|||
var ForeColor = $('#_forecolor').val(); |
|||
|
|||
if (Code == "") { |
|||
$.messager.alert('提示', '编号不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
if (Name == "") { |
|||
$.messager.alert('提示', '名称不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
|
|||
var model = { |
|||
ID, |
|||
Code, |
|||
Name, |
|||
Color, |
|||
CarModelCode, |
|||
ForeColor, |
|||
method: 'SaveInfo' |
|||
}; |
|||
SaveModel(model); |
|||
} |
|||
function SaveModel(model) { |
|||
$.ajax({ |
|||
type: "POST", |
|||
async: false, |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已保存', 'info'); |
|||
dg.datagrid('reload'); |
|||
$('#w').window('close'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '保存失败,请查看是否名称重复', 'warning'); |
|||
} |
|||
|
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
//查询方法 |
|||
function SearchInfo() { |
|||
var Name = $('#name_s').val(); |
|||
var Code = $('#code_s').val(); |
|||
var Color = $('#color_s').val(); |
|||
dg.datagrid({ |
|||
queryParams: { Name, Code, Color } |
|||
}); |
|||
|
|||
dg.datagrid('reload'); |
|||
} |
|||
////编辑时加载窗体数据 |
|||
function initEidtWidget() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
|
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能编辑一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行编辑', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
//窗体数据初始化 |
|||
var row = selRows[0]; |
|||
|
|||
PrimaryID = row.ID; |
|||
$('#_name').val(row.Name); |
|||
$('#_code').val(row.Code); |
|||
$('#_color').val(row.Color); |
|||
$('#_carmodelcode').val(row.CarModelCode); |
|||
$('#_forecolor').val(row.ForeColor); |
|||
$('#w').window('open'); |
|||
} |
|||
//删除方法 |
|||
function deleteInfos() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能删除一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行删除', 'warning'); |
|||
return; |
|||
} |
|||
var row = selRows[0]; |
|||
|
|||
var model = { |
|||
ID: row.ID, |
|||
method: 'DelInfo' |
|||
}; |
|||
|
|||
$.ajax({ |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
async: false, |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已删除', 'info'); |
|||
dg.datagrid('reload'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '由于有关联数据,删除失败', 'warning'); |
|||
} |
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
|
|||
/**************** 辅助业务程序 ***************/ |
|||
/**********************************************/ |
|||
/***************** 窗体程序 *******************/ |
|||
/**********************************************/ |
|||
//编辑窗口关闭清空数据 |
|||
function clearw() { |
|||
$('#_name').val(''); |
|||
$('#_code').val(''); |
|||
$('#_color').val(''); |
|||
$('#_carmodelcode').val(''); |
|||
$('#_forecolor').val(''); |
|||
} |
|||
|
|||
/** |
|||
* 加载厂家下拉信息 |
|||
**/ |
|||
//function reload_manufacturer_combo(ctl) { |
|||
// base_reload_combobox(ctl, '/HttpHandlers/ManufacturerHandler.ashx?method=MenufacturerCombo'); |
|||
//} |
|||
|
|||
//function base_reload_combobox(ctl, url) { |
|||
// $(ctl).combobox('reload', url); |
|||
//} |
|||
|
|||
</script> |
|||
</form> |
|||
</body> |
|||
</html> |
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
public partial class XDColor : System.Web.UI.Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
if (Request.Cookies["LoginUserInfo"] == null) |
|||
{ |
|||
Response.Write("<script language=javascript>alert('您的登录信息已过期,请重新登录!');top.location.href='../Login.aspx';</script>"); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <自动生成>
|
|||
// 此代码由工具生成。
|
|||
//
|
|||
// 对此文件的更改可能导致不正确的行为,如果
|
|||
// 重新生成代码,则所做更改将丢失。
|
|||
// </自动生成>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
|
|||
|
|||
public partial class XDColor |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// form1 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlForm form1; |
|||
|
|||
/// <summary>
|
|||
/// lblMessage 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.Label lblMessage; |
|||
|
|||
/// <summary>
|
|||
/// UserID 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlInputText UserID; |
|||
} |
|||
} |
@ -0,0 +1,352 @@ |
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="XDProduct.aspx.cs" Inherits="MESWebSite.Manage.XDProduct" %> |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head runat="server"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<link href="/CSS/Basics.css" rel="stylesheet" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" /> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> |
|||
<script src="/Scripts/MyJs.js" type="text/javascript"></script> |
|||
<style> |
|||
#w td { |
|||
padding: 5px 5px; |
|||
text-align: left; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
#w .title { |
|||
vertical-align: middle; |
|||
text-align: right; |
|||
width: 80px; |
|||
height: 40px; |
|||
} |
|||
|
|||
p { |
|||
padding: 5px; |
|||
font-size: small; |
|||
font-family: 微软雅黑; |
|||
} |
|||
|
|||
.datagrid { |
|||
text-align: center; |
|||
} |
|||
.search_first{ |
|||
margin-left: 34.5% |
|||
} |
|||
/* 中等屏幕 桌面显示器 992至1400 */ |
|||
@media screen and (min-width:992px) and (max-width:1400px){ |
|||
.search_first{ |
|||
margin-left: 3% |
|||
} |
|||
} |
|||
</style> |
|||
<title>现代车型</title> |
|||
</head> |
|||
<body> |
|||
<form id="form1" runat="server"> |
|||
<div class="top"> |
|||
<table style="width: 100%"> |
|||
<tr style="display: flex;flex-direction: row; flex-wrap: wrap;"> |
|||
<td ><span class="title" style="width: 150px">车型</span> |
|||
</td> |
|||
<td style="width: 100px;"></td> |
|||
<td style="width: 280px;">车型名称: |
|||
<input id="cartype_name_s" type="text" value="" /> |
|||
</td> |
|||
<td style="width: 250px;"> 车型编号: |
|||
<input id="cartype_csode_s" type="text" value="" style="width: 140px;"/> |
|||
</td> |
|||
<td style="width: 80px"><a class="topsearchBtn">查询</a></td> |
|||
|
|||
<td style="width: 80px"> |
|||
<a class="topaddBtn">新增</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="toppenBtn">编辑</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="topdelBtn">删除</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
<table id="tb" title="车型" style="width: 99%;"> |
|||
</table> |
|||
<!-- 编辑窗口 --> |
|||
<div id="w" style="padding: 10px; visibility: hidden" title="编辑"> |
|||
<table cellpadding="0" cellspacing="0"> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
车型名称: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="cartype_name" type="text" style="width: 230px; height: 30px" /><span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
车型编号: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="cartype_Code" type="text" style="width: 230px; height: 30px" /> |
|||
<span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
|
|||
</td> |
|||
</tr> |
|||
|
|||
</table> |
|||
</div> |
|||
<!-- 编辑窗口 - footer --> |
|||
<div id="ft" style="padding: 10px; text-align: center; background-color: #f9f9f9; visibility: hidden"> |
|||
<a class="saveBtn" id="saveBtn">保存</a> |
|||
</div> |
|||
|
|||
<div hidden="hidden"> |
|||
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label> |
|||
</div> |
|||
<input id="UserID" type="text" hidden="hidden" runat="server" /> |
|||
<script> |
|||
|
|||
/**************** 全局变量 ***************/ |
|||
var PrimaryID; //要编辑的id |
|||
var dg = $('#tb'); //表格 |
|||
var isEdit = false; //是否为编辑状态 |
|||
var handlerUrl = "/HttpHandlers/CarModelHandler.ashx"; |
|||
|
|||
/**************** DOM加载 ***************/ |
|||
$(function () { |
|||
$.ajaxSetup({ |
|||
cache: false //关闭AJAX缓存 |
|||
}); |
|||
|
|||
//// 下拉框加载 |
|||
//reload_manufacturer_combo('#manufacturer_id_s'); |
|||
//reload_manufacturer_combo('#manufacturer_id'); |
|||
//新增按钮点击 |
|||
$('.topaddBtn').first().click(function () { |
|||
isEdit = false; |
|||
$('#w').window('open'); |
|||
}); |
|||
|
|||
//编辑按钮点击 |
|||
$('.toppenBtn').first().click(function () { |
|||
isEdit = true; |
|||
|
|||
initEidtWidget(); |
|||
}); |
|||
|
|||
//删除按钮 |
|||
$('.topdelBtn').first().click(function () { |
|||
$.messager.confirm('提示框', '你确定要删除吗?', function (r) { |
|||
if (r) { |
|||
deleteInfos(); |
|||
} |
|||
}); |
|||
|
|||
}); |
|||
|
|||
//搜索按钮 |
|||
$('.topsearchBtn').first().click(function () { |
|||
SearchInfo(); |
|||
}); |
|||
|
|||
//保存按钮 |
|||
$('#saveBtn').bind('click', function () { |
|||
SaveInfo(isEdit); |
|||
}); |
|||
|
|||
//编辑窗口加载 |
|||
$('#w').window({ |
|||
modal: true, |
|||
closed: true, |
|||
minimizable: false, |
|||
maximizable: false, |
|||
collapsible: false, |
|||
width: 460, |
|||
height: 520, |
|||
footer: '#ft', |
|||
top: 20, |
|||
onBeforeClose: function () { clearw(); }, |
|||
onBeforeOpen: function () { |
|||
$('#w').css('visibility', 'visible'); $('#ft').css('visibility', 'visible'); |
|||
} |
|||
|
|||
}); |
|||
|
|||
dg = $('#tb').datagrid({ |
|||
fitColumns: true, |
|||
nowrap: false, |
|||
striped: true, |
|||
collapsible: false, |
|||
url: handlerUrl + "?method=QueryList", |
|||
//sortName: 'sortNumber', |
|||
//sortOrder: 'asc', |
|||
remoteSort: false, |
|||
columns: [[ |
|||
{ field: 'ID', title: 'ID', hidden: true }, |
|||
{ field: 'Name', title: '车型名称', sortable: 'true', width: 10 }, |
|||
{ field: 'Code', title: '车型编号', sortable: 'true', width: 10 } |
|||
]], |
|||
|
|||
pagination: true,//表示在datagrid设置分页 |
|||
rownumbers: true, |
|||
singleSelect: true |
|||
}); |
|||
dg.datagrid('getPager').pagination({ |
|||
pageSize: 10, |
|||
pageNumber: 1, |
|||
pageList: [10, 20, 30, 40, 50], |
|||
beforePageText: '第',//页数文本框前显示的汉字 |
|||
afterPageText: '页 共 {pages} 页', |
|||
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录', |
|||
}); |
|||
}); |
|||
|
|||
/**************** 主要业务程序 ***************/ |
|||
//新增 / 编辑 |
|||
function SaveInfo(isEdit) { |
|||
|
|||
var ID = isEdit == true ? PrimaryID : 0; |
|||
var CarTypeName = $('#cartype_name').val(); |
|||
var CarTypeCode = $('#cartype_Code').val(); |
|||
|
|||
if (CarTypeName == "") { |
|||
$.messager.alert('提示', '车型名称不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
if (CarTypeCode == "") { |
|||
$.messager.alert('提示', '车型编号不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
var model = { |
|||
ID, |
|||
CarTypeName, |
|||
CarTypeCode, |
|||
method: 'SaveInfo' |
|||
}; |
|||
SaveModel(model); |
|||
} |
|||
function SaveModel(model) { |
|||
$.ajax({ |
|||
type: "POST", |
|||
async: false, |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已保存', 'info'); |
|||
dg.datagrid('reload'); |
|||
$('#w').window('close'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '保存失败,请查看是否名称重复', 'warning'); |
|||
} |
|||
|
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
//查询方法 |
|||
function SearchInfo() { |
|||
var CarTypeName = $('#cartype_name_s').val(); |
|||
var CarTypeCode = $('#cartype_code_s').val(); |
|||
dg.datagrid({ |
|||
queryParams: { CarTypeName, CarTypeCode } |
|||
}); |
|||
|
|||
dg.datagrid('reload'); |
|||
} |
|||
////编辑时加载窗体数据 |
|||
function initEidtWidget() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
|
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能编辑一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行编辑', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
//窗体数据初始化 |
|||
var row = selRows[0]; |
|||
|
|||
PrimaryID = row.ID; |
|||
$('#cartype_name').val(row.Name); |
|||
$('#cartype_Code').val(row.Code);s |
|||
$('#w').window('open'); |
|||
} |
|||
//删除方法 |
|||
function deleteInfos() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能删除一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行删除', 'warning'); |
|||
return; |
|||
} |
|||
var row = selRows[0]; |
|||
|
|||
var model = { |
|||
ID: row.ID, |
|||
method: 'DelInfo' |
|||
}; |
|||
|
|||
$.ajax({ |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
async: false, |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已删除', 'info'); |
|||
dg.datagrid('reload'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '由于有关联数据,删除失败', 'warning'); |
|||
} |
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
|
|||
/**************** 辅助业务程序 ***************/ |
|||
/**********************************************/ |
|||
/***************** 窗体程序 *******************/ |
|||
/**********************************************/ |
|||
//编辑窗口关闭清空数据 |
|||
function clearw() { |
|||
$('#cartype_name').val(''); |
|||
$('#cartype_code').val(''); |
|||
} |
|||
|
|||
/** |
|||
* 加载厂家下拉信息 |
|||
**/ |
|||
//function reload_manufacturer_combo(ctl) { |
|||
// base_reload_combobox(ctl, '/HttpHandlers/ManufacturerHandler.ashx?method=MenufacturerCombo'); |
|||
//} |
|||
|
|||
//function base_reload_combobox(ctl, url) { |
|||
// $(ctl).combobox('reload', url); |
|||
//} |
|||
|
|||
</script> |
|||
</form> |
|||
</body> |
|||
</html> |
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
public partial class XDProduct : System.Web.UI.Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
if (Request.Cookies["LoginUserInfo"] == null) |
|||
{ |
|||
Response.Write("<script language=javascript>alert('您的登录信息已过期,请重新登录!');top.location.href='../Login.aspx';</script>"); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <自动生成>
|
|||
// 此代码由工具生成。
|
|||
//
|
|||
// 对此文件的更改可能导致不正确的行为,如果
|
|||
// 重新生成代码,则所做更改将丢失。
|
|||
// </自动生成>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
|
|||
|
|||
public partial class XDProduct |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// form1 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlForm form1; |
|||
|
|||
/// <summary>
|
|||
/// lblMessage 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.Label lblMessage; |
|||
|
|||
/// <summary>
|
|||
/// UserID 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlInputText UserID; |
|||
} |
|||
} |
@ -0,0 +1,367 @@ |
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="XDStockArea.aspx.cs" Inherits="MESWebSite.Manage.XDStockArea" %> |
|||
|
|||
<!DOCTYPE html> |
|||
|
|||
<html xmlns="http://www.w3.org/1999/xhtml"> |
|||
<head runat="server"> |
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|||
<link href="/CSS/Basics.css" rel="stylesheet" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/metro/easyui.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/icon.css" rel="stylesheet" type="text/css" /> |
|||
<link href="/Scripts/jquery-easyui-1.4.3/themes/color.css" rel="stylesheet" type="text/css" /> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/jquery.easyui.min.js" type="text/javascript"></script> |
|||
<script src="/Scripts/jquery-easyui-1.4.3/locale/easyui-lang-zh_CN.js" type="text/javascript"></script> |
|||
<script src="/Scripts/MyJs.js" type="text/javascript"></script> |
|||
<style> |
|||
#w td { |
|||
padding: 5px 5px; |
|||
text-align: left; |
|||
vertical-align: middle; |
|||
} |
|||
|
|||
#w .title { |
|||
vertical-align: middle; |
|||
text-align: right; |
|||
width: 80px; |
|||
height: 40px; |
|||
} |
|||
|
|||
p { |
|||
padding: 5px; |
|||
font-size: small; |
|||
font-family: 微软雅黑; |
|||
} |
|||
|
|||
.datagrid { |
|||
text-align: center; |
|||
} |
|||
.search_first{ |
|||
margin-left: 34.5% |
|||
} |
|||
/* 中等屏幕 桌面显示器 992至1400 */ |
|||
@media screen and (min-width:992px) and (max-width:1400px){ |
|||
.search_first{ |
|||
margin-left: 3% |
|||
} |
|||
} |
|||
</style> |
|||
<title>现代库区</title> |
|||
</head> |
|||
<body> |
|||
<form id="form1" runat="server"> |
|||
<div class="top"> |
|||
<table style="width: 100%"> |
|||
<tr style="display: flex;flex-direction: row; flex-wrap: wrap;"> |
|||
<td ><span class="title" style="width: 150px">车型</span> |
|||
</td> |
|||
<td style="width: 100px;"></td> |
|||
<td style="width: 280px;">库区名称: |
|||
<input id="area_name_s" type="text" value="" /> |
|||
</td> |
|||
<td style="width: 250px;"> 库区编号: |
|||
<input id="area_csode_s" type="text" value="" style="width: 140px;"/> |
|||
</td> |
|||
<td style="width: 80px"><a class="topsearchBtn">查询</a></td> |
|||
|
|||
<td style="width: 80px"> |
|||
<a class="topaddBtn">新增</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="toppenBtn">编辑</a> |
|||
</td> |
|||
<td style="width: 80px"> |
|||
<a class="topdelBtn">删除</a> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
<table id="tb" title="车型" style="width: 99%;"> |
|||
</table> |
|||
<!-- 编辑窗口 --> |
|||
<div id="w" style="padding: 10px; visibility: hidden" title="编辑"> |
|||
<table cellpadding="0" cellspacing="0"> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
库区名称: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="area_name" type="text" style="width: 230px; height: 30px" /><span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
</td> |
|||
</tr> |
|||
<tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
库区编号: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="area_Code" type="text" style="width: 230px; height: 30px" /> |
|||
<span style="color: red; font-size: 18px; vertical-align: middle;">*</span> |
|||
|
|||
</td> |
|||
</tr> <tr> |
|||
<td class="title" style="width: 110px;"> |
|||
<p> |
|||
U8编号: |
|||
</p> |
|||
</td> |
|||
<td colspan="2"> |
|||
<input id="u8_Code" type="text" style="width: 230px; height: 30px" /> |
|||
|
|||
</td> |
|||
</tr> |
|||
|
|||
</table> |
|||
</div> |
|||
<!-- 编辑窗口 - footer --> |
|||
<div id="ft" style="padding: 10px; text-align: center; background-color: #f9f9f9; visibility: hidden"> |
|||
<a class="saveBtn" id="saveBtn">保存</a> |
|||
</div> |
|||
|
|||
<div hidden="hidden"> |
|||
<asp:Label ID="lblMessage" runat="server" Text=""></asp:Label> |
|||
</div> |
|||
<input id="UserID" type="text" hidden="hidden" runat="server" /> |
|||
<script> |
|||
|
|||
/**************** 全局变量 ***************/ |
|||
var PrimaryID; //要编辑的id |
|||
var dg = $('#tb'); //表格 |
|||
var isEdit = false; //是否为编辑状态 |
|||
var handlerUrl = "/HttpHandlers/XDStockAreaHandler.ashx"; |
|||
|
|||
/**************** DOM加载 ***************/ |
|||
$(function () { |
|||
$.ajaxSetup({ |
|||
cache: false //关闭AJAX缓存 |
|||
}); |
|||
|
|||
//// 下拉框加载 |
|||
//reload_manufacturer_combo('#manufacturer_id_s'); |
|||
//reload_manufacturer_combo('#manufacturer_id'); |
|||
//新增按钮点击 |
|||
$('.topaddBtn').first().click(function () { |
|||
isEdit = false; |
|||
$('#w').window('open'); |
|||
}); |
|||
|
|||
//编辑按钮点击 |
|||
$('.toppenBtn').first().click(function () { |
|||
isEdit = true; |
|||
|
|||
initEidtWidget(); |
|||
}); |
|||
|
|||
//删除按钮 |
|||
$('.topdelBtn').first().click(function () { |
|||
$.messager.confirm('提示框', '你确定要删除吗?', function (r) { |
|||
if (r) { |
|||
deleteInfos(); |
|||
} |
|||
}); |
|||
|
|||
}); |
|||
|
|||
//搜索按钮 |
|||
$('.topsearchBtn').first().click(function () { |
|||
SearchInfo(); |
|||
}); |
|||
|
|||
//保存按钮 |
|||
$('#saveBtn').bind('click', function () { |
|||
SaveInfo(isEdit); |
|||
}); |
|||
|
|||
//编辑窗口加载 |
|||
$('#w').window({ |
|||
modal: true, |
|||
closed: true, |
|||
minimizable: false, |
|||
maximizable: false, |
|||
collapsible: false, |
|||
width: 460, |
|||
height: 520, |
|||
footer: '#ft', |
|||
top: 20, |
|||
onBeforeClose: function () { clearw(); }, |
|||
onBeforeOpen: function () { |
|||
$('#w').css('visibility', 'visible'); $('#ft').css('visibility', 'visible'); |
|||
} |
|||
|
|||
}); |
|||
|
|||
dg = $('#tb').datagrid({ |
|||
fitColumns: true, |
|||
nowrap: false, |
|||
striped: true, |
|||
collapsible: false, |
|||
url: handlerUrl + "?method=QueryList", |
|||
//sortName: 'sortNumber', |
|||
//sortOrder: 'asc', |
|||
remoteSort: false, |
|||
columns: [[ |
|||
{ field: 'ID', title: 'ID', hidden: true }, |
|||
{ field: 'Name', title: '库区名称', sortable: 'true', width: 10 }, |
|||
{ field: 'Code', title: '库区编号', sortable: 'true', width: 10 }, |
|||
{ field: 'U8Code', title: 'U8编号', sortable: 'true', width: 10 } |
|||
]], |
|||
|
|||
pagination: true,//表示在datagrid设置分页 |
|||
rownumbers: true, |
|||
singleSelect: true |
|||
}); |
|||
dg.datagrid('getPager').pagination({ |
|||
pageSize: 10, |
|||
pageNumber: 1, |
|||
pageList: [10, 20, 30, 40, 50], |
|||
beforePageText: '第',//页数文本框前显示的汉字 |
|||
afterPageText: '页 共 {pages} 页', |
|||
displayMsg: '当前显示 {from} - {to} 条记录 共 {total} 条记录', |
|||
}); |
|||
}); |
|||
|
|||
/**************** 主要业务程序 ***************/ |
|||
//新增 / 编辑 |
|||
function SaveInfo(isEdit) { |
|||
|
|||
var ID = isEdit == true ? PrimaryID : 0; |
|||
var Code = $('#area_Code').val(); |
|||
var Name = $('#area_name').val(); |
|||
var U8Code = $('#u8_Code').val(); |
|||
|
|||
if (Code == "") { |
|||
$.messager.alert('提示', '库区编号不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
if (Name == "") { |
|||
$.messager.alert('提示', '库区名称不能为空,请重新输入', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
var model = { |
|||
ID, |
|||
Code, |
|||
Name, |
|||
U8Code, |
|||
method: 'SaveInfo' |
|||
}; |
|||
SaveModel(model); |
|||
} |
|||
function SaveModel(model) { |
|||
$.ajax({ |
|||
type: "POST", |
|||
async: false, |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已保存', 'info'); |
|||
dg.datagrid('reload'); |
|||
$('#w').window('close'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '保存失败,请查看是否名称重复', 'warning'); |
|||
} |
|||
|
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
//查询方法 |
|||
function SearchInfo() { |
|||
var Name = $('#area_name_s').val(); |
|||
var Code = $('#area_code_s').val(); |
|||
dg.datagrid({ |
|||
queryParams: { Name, Code } |
|||
}); |
|||
|
|||
dg.datagrid('reload'); |
|||
} |
|||
////编辑时加载窗体数据 |
|||
function initEidtWidget() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
|
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能编辑一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行编辑', 'warning'); |
|||
return; |
|||
} |
|||
|
|||
//窗体数据初始化 |
|||
var row = selRows[0]; |
|||
|
|||
PrimaryID = row.ID; |
|||
$('#area_name').val(row.Name); |
|||
$('#area_Code').val(row.Code); |
|||
$('#u8_Code').val(row.U8Code); |
|||
$('#w').window('open'); |
|||
} |
|||
//删除方法 |
|||
function deleteInfos() { |
|||
var selRows = dg.datagrid('getSelections'); |
|||
if (selRows.length > 1) { |
|||
$.messager.alert('提示', '每次只能删除一条记录,请重新选取', 'warning'); |
|||
return; |
|||
} else if (selRows.length == 0) { |
|||
$.messager.alert('提示', '请选择一条记录进行删除', 'warning'); |
|||
return; |
|||
} |
|||
var row = selRows[0]; |
|||
|
|||
var model = { |
|||
ID: row.ID, |
|||
method: 'DelInfo' |
|||
}; |
|||
|
|||
$.ajax({ |
|||
url: handlerUrl, |
|||
data: model, |
|||
dataType: 'json', |
|||
async: false, |
|||
success: function (res) { |
|||
if (res.IsSuccess) { |
|||
$.messager.alert('提示', '已删除', 'info'); |
|||
dg.datagrid('reload'); |
|||
} |
|||
else { |
|||
$.messager.alert('提示', '由于有关联数据,删除失败', 'warning'); |
|||
} |
|||
}, |
|||
error: function () { |
|||
} |
|||
}); |
|||
} |
|||
|
|||
/**************** 辅助业务程序 ***************/ |
|||
/**********************************************/ |
|||
/***************** 窗体程序 *******************/ |
|||
/**********************************************/ |
|||
//编辑窗口关闭清空数据 |
|||
function clearw() { |
|||
$('#area_name').val(''); |
|||
$('#area_code').val(''); |
|||
$('#u8_code').val(''); |
|||
} |
|||
|
|||
/** |
|||
* 加载厂家下拉信息 |
|||
**/ |
|||
//function reload_manufacturer_combo(ctl) { |
|||
// base_reload_combobox(ctl, '/HttpHandlers/ManufacturerHandler.ashx?method=MenufacturerCombo'); |
|||
//} |
|||
|
|||
//function base_reload_combobox(ctl, url) { |
|||
// $(ctl).combobox('reload', url); |
|||
//} |
|||
|
|||
</script> |
|||
</form> |
|||
</body> |
|||
</html> |
@ -0,0 +1,20 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Web; |
|||
using System.Web.UI; |
|||
using System.Web.UI.WebControls; |
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
public partial class XDStockArea : System.Web.UI.Page |
|||
{ |
|||
protected void Page_Load(object sender, EventArgs e) |
|||
{ |
|||
if (Request.Cookies["LoginUserInfo"] == null) |
|||
{ |
|||
Response.Write("<script language=javascript>alert('您的登录信息已过期,请重新登录!');top.location.href='../Login.aspx';</script>"); |
|||
} |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,44 @@ |
|||
//------------------------------------------------------------------------------
|
|||
// <自动生成>
|
|||
// 此代码由工具生成。
|
|||
//
|
|||
// 对此文件的更改可能导致不正确的行为,如果
|
|||
// 重新生成代码,则所做更改将丢失。
|
|||
// </自动生成>
|
|||
//------------------------------------------------------------------------------
|
|||
|
|||
namespace MESWebSite.Manage |
|||
{ |
|||
|
|||
|
|||
public partial class XDStockArea |
|||
{ |
|||
|
|||
/// <summary>
|
|||
/// form1 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlForm form1; |
|||
|
|||
/// <summary>
|
|||
/// lblMessage 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.WebControls.Label lblMessage; |
|||
|
|||
/// <summary>
|
|||
/// UserID 控件。
|
|||
/// </summary>
|
|||
/// <remarks>
|
|||
/// 自动生成的字段。
|
|||
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
|
|||
/// </remarks>
|
|||
protected global::System.Web.UI.HtmlControls.HtmlInputText UserID; |
|||
} |
|||
} |
After Width: | Height: | Size: 547 KiB |
Loading…
Reference in new issue