/// <summary> /// Edits the specified identifier. /// </summary> /// <param name="id">The identifier.</param> /// <returns>ActionResult.</returns> public ActionResult Edit(int id) { var model = new DrugSubCategoryViewModel(); model.Categories = HealthHelper.GetAllDrugCategories(); if (id != -1) { var svc = new DrugSubCategoryAppService(); var o = svc.GetDrugSubCategory(id); model.DrugSubCategoryId = o.DrugSubCategoryId; model.Name = o.Name; model.DrugCategoryId = o.DrugCategoryId; } else { model.Action = "-1"; model.DrugSubCategoryId = -1; model.Name = string.Empty; } return View(model); }
public ActionResult Edit(DrugSubCategoryViewModel model) { try { var svc = new DrugSubCategoryAppService(); model.Categories = HealthHelper.GetAllDrugCategories(); var o = new DrugSubCategory { DrugSubCategoryId= model.DrugSubCategoryId, Name = model.Name, DrugCategoryId = model.DrugCategoryId }; if (model.Action == "-1") { var exist = svc.GetDrugSubCategory(model.DrugSubCategoryId)!=null; if (!exist) { svc.AddDrugSubCategory(o); ViewBag.Feed = 0; } else { model.Action = "-1"; ViewBag.Feed = 3; return View(model); } } else { o.DrugSubCategoryId= model.DrugSubCategoryId; if (model.IsDeleteAction == 0) { svc.SaveDrugSubCategory(o); } else { svc.RemoveDrugSubCategory(model.DrugSubCategoryId); } ViewBag.Feed = 0; } } catch (Exception) { ViewBag.Feed = 1; } return View(model); }
public DataTablesResult<DrugSubCategoryViewModel> GetAllRecords(DataTablesParam dataTableParam) { var svc = new DrugSubCategoryAppService(); var lst = svc.GetAllDrugSubCategory(); var lstVm = new List<DrugSubCategoryViewModel>(); foreach (var itm in lst) { var itmVm = new DrugSubCategoryViewModel { Name = itm.Name, DrugSubCategoryId= itm.DrugSubCategoryId, CategoryName = itm.DrugCategory.Name, DrugCategoryId = itm.DrugCategoryId }; var sb = new StringBuilder(); string editUrl = Url.Action("Edit", "DrugSubCategory"); sb.AppendLine("<div class=\"btn-group\">"); sb.AppendLine( "<button type=\"button\" class=\"btn btn-default dropdown-toggle\" data-toggle=\"dropdown\" aria-expanded=\"false\">"); sb.AppendLine("Acciones <span class=\"caret\"></span>"); sb.AppendLine("</button>"); sb.AppendLine("<ul class=\"dropdown-menu\" role=\"menu\">"); sb.AppendLine("<li><a href=\"" + editUrl + "?id=-1\"><i class=\"fa fa-plus\"></i> Nuevo Registro</a></li>"); sb.AppendLine("<li><a href=\"" + editUrl + "?id=" + itmVm.DrugSubCategoryId+ "\"><i class=\"fa fa-edit\"></i> Editar " + itmVm.Name + "</a></li>"); sb.AppendLine("</ul>"); sb.AppendLine("</div>"); var actionButton = sb.ToString(); itmVm.ActionButton = actionButton; lstVm.Add(itmVm); } var lstVmQueryable = lstVm.AsQueryable(); return DataTablesResult.Create(lstVmQueryable, dataTableParam); }
public JsonResult GetDrugSubCategory(int id) { var svc = new DrugSubCategoryAppService(); var states = svc.GetDrugSubCategoryByCategory(id); return this.Json(states, JsonRequestBehavior.AllowGet); }