public ActionResult Create(string ID, string UNDERTAKE_LABORATORYID, string OP) { ViewBag.UNDERTAKE_LABORATORYID = UNDERTAKE_LABORATORYID; //实验室ID ViewBag.OP = OP; //操作方式 SCHEME entity = null; if (ID != null && ID.Trim() != "") { entity = m_BLL.GetById(ID); } if (entity == null) { ViewBag.ID = ""; } else { ViewBag.UNDERTAKE_LABORATORYID = entity.UNDERTAKE_LABORATORYID; IBLL.ISCHEME_RULEBLL mr_BLL = new SCHEME_RULEBLL(); ViewBag.RuleIDs = mr_BLL.GetRuleIDsBySCHEMEID(ID); } if (OP != null && OP == "复制") { entity.ID = ""; ViewBag.ID = ""; entity.COPYID = ID; } return(View(entity)); }
public ActionResult Edit(string id, string op) { ViewBag.Id = id; SCHEME entity = m_BLL.GetById(id); if (op != null && op == "复制") { entity.ID = ""; } return(View(entity)); }
/// <summary> /// 创建一个方案 /// </summary> /// <param name="validationErrors">返回的错误信息</param> /// <param name="db">数据库上下文</param> /// <param name="entity">一个方案</param> /// <returns></returns> public bool Create(ref ValidationErrors validationErrors, SCHEME entity) { try { repository.Create(entity); return(true); } catch (Exception ex) { validationErrors.Add(ex.Message); ExceptionsHander.WriteExceptions(ex); } return(false); }
/// <summary> /// 停用 /// </summary> /// <param name="NAME">方案名称</param> /// <param name="UNDERTAKE_LABORATORYID">实验室编号</param> /// <param name="RULEIDs">检查项编号多个,分割例如(1,2)</param> /// <returns></returns> public ActionResult UpdateIsStop(string ID, string ISSTOP) { Common.ClientResult.Result result = new Common.ClientResult.Result(); SCHEME entity = m_BLL.GetById(ID); if (entity != null && ModelState.IsValid) { //数据校验 string currentPerson = GetCurrentPerson(); entity.UPDATEPERSON = currentPerson; entity.UPDATETIME = DateTime.Now; entity.ISSTOP = ISSTOP; string returnValue = string.Empty; if (m_BLL.Edit(ref validationErrors, entity)) { LogClassModels.WriteServiceLog(Suggestion.UpdateSucceed + ",方案信息的Id为" + entity.ID, "方案" );//写入日志 result.Code = Common.ClientCode.Succeed; result.Message = Suggestion.UpdateSucceed; return(Json(result)); //提示更新成功 } else { if (validationErrors != null && validationErrors.Count > 0) { validationErrors.All(a => { returnValue += a.ErrorMessage; return(true); }); } LogClassModels.WriteServiceLog(Suggestion.UpdateFail + ",方案信息的Id为" + entity.ID + "," + returnValue, "方案" );//写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.UpdateFail + returnValue; return(Json(result)); //提示更新失败 } } result.Code = Common.ClientCode.FindNull; result.Message = Suggestion.UpdateFail + "请核对输入的数据的格式"; return(Json(result)); //提示输入的数据的格式不对 }
/// <summary> /// 创建 /// </summary> /// <param name="entity">实体对象</param> /// <returns></returns> public Common.ClientResult.Result Post([FromBody] SCHEME entity) { Common.ClientResult.Result result = new Common.ClientResult.Result(); if (entity != null && ModelState.IsValid) { string currentPerson = GetCurrentPerson(); entity.CREATETIME = DateTime.Now; entity.CREATEPERSON = currentPerson; entity.ID = Result.GetNewId(); string returnValue = string.Empty; if (m_BLL.Create(ref validationErrors, entity)) { LogClassModels.WriteServiceLog(Suggestion.InsertSucceed + ",方案的信息的Id为" + entity.ID, "方案" );//写入日志 result.Code = Common.ClientCode.Succeed; result.Message = Suggestion.InsertSucceed; return(result); //提示创建成功 } else { if (validationErrors != null && validationErrors.Count > 0) { validationErrors.All(a => { returnValue += a.ErrorMessage; return(true); }); } LogClassModels.WriteServiceLog(Suggestion.InsertFail + ",方案的信息," + returnValue, "方案" );//写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.InsertFail + returnValue; return(result); //提示插入失败 } } result.Code = Common.ClientCode.FindNull; result.Message = Suggestion.InsertFail + ",请核对输入的数据的格式"; //提示输入的数据的格式不对 return(result); }
// DELETE api/<controller>/5 /// <summary> /// 删除\停用 /// </summary> /// <param name="collection"></param> /// <returns></returns> public ActionResult MultOp(string query, string Op) { Common.ClientResult.Result result = new Common.ClientResult.Result(); string returnValue = string.Empty; string[] deleteId = query.GetString().Split(','); if (deleteId != null && deleteId.Length > 0) { if (Op == "删除") { if (m_BLL.DeleteCollection(ref validationErrors, deleteId)) { LogClassModels.WriteServiceLog(Suggestion.DeleteSucceed + ",方案的Id为" + string.Join(",", deleteId), "消息" );//删除成功,写入日志 result.Code = Common.ClientCode.Succeed; result.Message = Suggestion.DeleteSucceed; } else { if (validationErrors != null && validationErrors.Count > 0) { validationErrors.All(a => { returnValue += a.ErrorMessage; return(true); }); } LogClassModels.WriteServiceLog(Suggestion.DeleteFail + ",方案的Id为" + string.Join(",", deleteId) + "," + returnValue, "消息" );//删除失败,写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.DeleteFail + returnValue; } } else if (Op == "停用" || Op == "启用") { List <SCHEME> list = new List <SCHEME>(); foreach (string id in deleteId) { SCHEME entity = m_BLL.GetById(id); string currentPerson = GetCurrentPerson(); entity.UPDATEPERSON = currentPerson; entity.UPDATETIME = DateTime.Now; entity.ISSTOP = Op; list.Add(entity); } if (m_BLL.EditCollection(ref validationErrors, list.AsQueryable <SCHEME>())) { LogClassModels.WriteServiceLog(Suggestion.UpdateSucceed + ",方案的Id为" + string.Join(",", deleteId), "消息");//修改成功,写入日志 result.Code = Common.ClientCode.Succeed; result.Message = Suggestion.UpdateSucceed; return(Json(result)); //提示更新成功 } else { LogClassModels.WriteServiceLog(Suggestion.UpdateSucceed + ",方案的Id为" + string.Join(",", deleteId) + "," + returnValue, "消息");//删除失败,写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.UpdateFail + returnValue; } } } return(Json(result)); }
/// <summary> /// 修改 /// </summary> /// <param name="ID">方案编号</param> /// <param name="NAME">方案名称</param> /// <param name="UNDERTAKE_LABORATORYID">实验室编号</param> /// <param name="RULEIDs">检查项编号多个,分割例如(1,2)</param> /// <returns></returns> public ActionResult UpdateSave(string ID, string NAME, string UNDERTAKE_LABORATORYID, string RULEIDs) { Common.ClientResult.Result result = new Common.ClientResult.Result(); if (ID != null && ID.Trim() != "") { SCHEME entity = m_BLL.GetById(ID); if (entity != null && ModelState.IsValid) { //数据校验 string currentPerson = GetCurrentPerson(); entity.UPDATEPERSON = currentPerson; entity.UPDATETIME = DateTime.Now; entity.NAME = NAME; entity.UNDERTAKE_LABORATORYID = UNDERTAKE_LABORATORYID; if (entity.SCHEME_RULE != null && entity.SCHEME_RULE.Count > 0) { SCHEME_RULEBLL rBll = new SCHEME_RULEBLL(); string[] rIDs = new string[entity.SCHEME_RULE.Count]; int i = 0; foreach (SCHEME_RULE r in entity.SCHEME_RULE.ToList()) { rIDs[i] = r.ID; i++; } rBll.DeleteCollection(ref validationErrors, rIDs); } if (RULEIDs != null && RULEIDs.Trim() != "") { int i = 1; string[] RULEIDList = RULEIDs.Split(','); foreach (string ruleID in RULEIDList) { if (ruleID != null && ruleID.Trim() != "") { SCHEME_RULE item = new SCHEME_RULE(); item.CREATEPERSON = currentPerson; item.CREATETIME = DateTime.Now; item.RULEID = ruleID; item.SCHEMEID = entity.ID; item.ID = Result.GetNewId(); item.SORT = i; entity.SCHEME_RULE.Add(item); i++; } } } string returnValue = string.Empty; if (m_BLL.Edit(ref validationErrors, entity)) { LogClassModels.WriteServiceLog(Suggestion.UpdateSucceed + ",方案信息的Id为" + entity.ID, "方案" );//写入日志 result.Code = Common.ClientCode.Succeed; result.Message = Suggestion.UpdateSucceed; return(Json(result)); //提示更新成功 } else { if (validationErrors != null && validationErrors.Count > 0) { validationErrors.All(a => { returnValue += a.ErrorMessage; return(true); }); } LogClassModels.WriteServiceLog(Suggestion.UpdateFail + ",方案信息的Id为" + entity.ID + "," + returnValue, "方案" );//写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.UpdateFail + returnValue; return(Json(result)); //提示更新失败 } } result.Code = Common.ClientCode.FindNull; result.Message = Suggestion.UpdateFail + "请核对输入的数据的格式"; return(Json(result)); //提示输入的数据的格式不对 } else { //return CreateSave(NAME, UNDERTAKE_LABORATORYID, RULEIDs); result.Code = Common.ClientCode.FindNull; result.Message = Suggestion.UpdateFail + "请核对输入的数据的格式"; return(Json(result)); //提示输入的数据的格式不对 } }
/// <summary> /// 创建 /// </summary> /// <param name="NAME">方案名称</param> /// <param name="UNDERTAKE_LABORATORYID">实验室编号</param> /// <param name="RULEIDs">检查项编号多个,分割例如(1,2)</param> /// <param name="COPYID">复制方案ID</param> /// <returns></returns> public ActionResult CreateSave(string NAME, string UNDERTAKE_LABORATORYID, string RULEIDs, string COPYID) { Common.ClientResult.Result result = new Common.ClientResult.Result(); SCHEME entity = new SCHEME(); string currentPerson = GetCurrentPerson(); entity.CREATETIME = DateTime.Now; entity.CREATEPERSON = currentPerson; entity.UNDERTAKE_LABORATORYID = UNDERTAKE_LABORATORYID; entity.ID = Result.GetNewId(); entity.STATUS = "未使用"; entity.ISSTOP = "停用"; entity.NAME = NAME; entity.COPYID = COPYID; if (RULEIDs != null && RULEIDs.Trim() != "") { string[] RULEIDList = RULEIDs.Split(','); int i = 1; foreach (string ruleID in RULEIDList) { if (ruleID != null && ruleID.Trim() != "") { SCHEME_RULE item = new SCHEME_RULE(); item.CREATEPERSON = currentPerson; item.CREATETIME = DateTime.Now; item.RULEID = ruleID; item.SCHEMEID = entity.ID; item.ID = Result.GetNewId(); item.SORT = i; entity.SCHEME_RULE.Add(item); i++; } } } string returnValue = string.Empty; if (m_BLL.Create(ref validationErrors, entity)) { LogClassModels.WriteServiceLog(Suggestion.InsertSucceed + ",方案的信息的Id为" + entity.ID, "方案" );//写入日志 result.Code = Common.ClientCode.Succeed; //result.Message = Suggestion.InsertSucceed; result.Message = entity.ID; return(Json(result)); //提示创建成功 } else { if (validationErrors != null && validationErrors.Count > 0) { validationErrors.All(a => { returnValue += a.ErrorMessage; return(true); }); } LogClassModels.WriteServiceLog(Suggestion.InsertFail + ",方案的信息," + returnValue, "方案" );//写入日志 result.Code = Common.ClientCode.Fail; result.Message = Suggestion.InsertFail + returnValue; return(Json(result)); //提示插入失败 } }
/// <summary> /// 根据ID获取数据模型 /// </summary> /// <param name="id">编号</param> /// <returns></returns> public SCHEME Get(string id) { SCHEME item = m_BLL.GetById(id); return(item); }