using System.Linq; using System.Web.Mvc; using DSWeb.Areas.TruckMng.DAL.MsMlieage; using DSWeb.Areas.TruckMng.Models.MsMlieage; using DSWeb.TruckMng.Comm.Cookie; using DSWeb.TruckMng.Helper; using HcUtility.Comm; using HcUtility.Core; using DSWeb.SoftMng.Filter; namespace DSWeb.Areas.TruckMng.Controllers { [JsonRequestBehavior] public class MsMlieageController : Controller { // // GET: /TruckMng/MsMlieage public ActionResult Index() { return View(); } // // GET: /TruckMng/MsMlieage/Edit public ActionResult Edit() { return View(); } // // GET:/TruckMng/MsMlieage/GetDataList [SqlKeyWordsFilter(Type = "Action")]//sql 防注入过滤器 public ContentResult GetDataList(int start, int limit, string sort, string condition) { var dataList = MsMlieageDAL.GetDataList(condition); var list = dataList.Skip(start).Take(limit); var json = JsonConvert.Serialize(new { Success = true, Message = "查询成功", totalCount = dataList.Count, data = list.ToList() }); return new ContentResult() { Content = json }; } // // GET:/TruckMng/MsMlieage/GetData/ [SqlKeyWordsFilter(Type = "Action")]//sql 防注入过滤器 public ContentResult GetData(string handle, string condition) { MsMlieage head = null; if (handle == "edit") { var list = MsMlieageDAL.GetDataList(condition); if (list.Count > 0) head = list[0]; } if (head == null) { head = new MsMlieage(); } var json = JsonConvert.Serialize( new { Success = true, Message = "查询成功", data = head }); return new ContentResult() { Content = json }; } [SqlKeyWordsFilter(Type = "Action")]//sql 防注入过滤器 public ContentResult GetDataSum(string handle, string condition) { MsMlieageSum head = null; if (handle == "edit") { var list = MsMlieageDAL.GetDataListSum(condition); if (list.Count > 0) head = list[0]; } if (head == null) { head = new MsMlieageSum(); } var json = JsonConvert.Serialize( new { Success = true, Message = "查询成功", data = head }); return new ContentResult() { Content = json }; } // // GET:/TruckMng/MsMlieage/Save public ContentResult Save(string opstatus, string data) { MsMlieage head = JsonConvert.Deserialize(data); if (opstatus == "add") { head.DbOperationType = DbOperationType.DbotIns; // head.OrgCode = CookieConfig.GetCookie_OrgCode(Request); } else if (opstatus == "edit") { head.DbOperationType = DbOperationType.DbotUpd; } else { head.DbOperationType = DbOperationType.DbotDel; } var modb = new ModelObjectDB(); DBResult result = modb.Save(head); var jsonRespose = new JsonResponse { Success = result.Success, Message = result.Message, Data = MsMlieageDAL.GetData("SerialNo=" + head.SerialNo + "") }; return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) }; } public ContentResult Delete(string data) { var head = JsonConvert.Deserialize(data); var modb = new ModelObjectDB(); DBResult result = modb.Delete(head); var jsonRespose = new JsonResponse { Success = result.Success, Message = result.Message }; return new ContentResult() { Content = JsonConvert.Serialize(jsonRespose) }; } #region 参照部分 public ContentResult GetTruckNoList(string condition) { var list = MsMlieageDAL.GetTruckNoList(); var json = JsonConvert.Serialize(new { Success = true, Message = "查询成功", data = list.ToList() }); return new ContentResult() { Content = json }; } #endregion } }