public ActionResult Post(bool IsNew, IdentificacionModel varIdentificacion) { try { //if (ModelState.IsValid) //{ if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } _IIdentificacionApiConsumer.SetAuthHeader(_tokenManager.Token); var result = ""; var IdentificacionInfo = new Identificacion { Clave = varIdentificacion.Clave , Descripcion = varIdentificacion.Descripcion }; result = !IsNew? _IIdentificacionApiConsumer.Update(IdentificacionInfo, null, null).Resource.ToString() : _IIdentificacionApiConsumer.Insert(IdentificacionInfo, null, null).Resource.ToString(); Session["KeyValueInserted"] = result; return(Json(result, JsonRequestBehavior.AllowGet)); //} //return Json(false, JsonRequestBehavior.AllowGet); } catch (ServiceException ex) { return(Json(false, JsonRequestBehavior.AllowGet)); } }
public async Task <IActionResult> Insert(IdentificacionModel model) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } var identificacion = _mapper.Map <IdentificacionDto>(model); var id = await _identificacionServicio.Insertar(identificacion); return(Ok(id)); }
public async Task <IActionResult> Edit(long id, IdentificacionModel model) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } var identificacion = _mapper.Map <IdentificacionDto>(model); identificacion.Id = id; await _identificacionServicio.Modificar(identificacion); return(Ok(model)); }
public ActionResult AddIdentificacion(int rowIndex = 0, int functionMode = 0, string id = "0") { int ModuleId = (Session["CurrentModuleId"] != null) ? Convert.ToInt32(Session["CurrentModuleId"]) : 0; ViewBag.currentRowIndex = rowIndex; ViewBag.functionMode = functionMode; ViewBag.Consult = false; var permission = PermissionHelper.GetRoleObjectPermission(SessionHelper.Role, 44975); ViewBag.Permission = permission; if (!_tokenManager.GenerateToken()) { return(null); } _IIdentificacionApiConsumer.SetAuthHeader(_tokenManager.Token); IdentificacionModel varIdentificacion = new IdentificacionModel(); if (id.ToString() != "0") { var IdentificacionsData = _IIdentificacionApiConsumer.ListaSelAll(0, 1000, "Identificacion.Clave=" + id, "").Resource.Identificacions; if (IdentificacionsData != null && IdentificacionsData.Count > 0) { var IdentificacionData = IdentificacionsData.First(); varIdentificacion = new IdentificacionModel { Clave = IdentificacionData.Clave , Descripcion = IdentificacionData.Descripcion }; } } if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } return(PartialView("AddIdentificacion", varIdentificacion)); }
public ActionResult Create(short Id = 0, int consult = 0, int ModuleId = 0) { if (ModuleId == 0) { ModuleId = (Session["CurrentModuleId"] != null) ? Convert.ToInt32(Session["CurrentModuleId"]) : 0; } else { Session["CurrentModuleId"] = ModuleId; } var permission = PermissionHelper.GetRoleObjectPermission(SessionHelper.Role, 44975, ModuleId); if ((!permission.New && Id.ToString() == "0") || (!permission.Edit && Id.ToString() != "0" && (!permission.Consult && consult == 1))) { Response.Redirect("~/"); } ViewBag.Permission = permission; var varIdentificacion = new IdentificacionModel(); varIdentificacion.Clave = Id; ViewBag.ObjectId = "44975"; ViewBag.Operation = "New"; ViewBag.IsNew = true; if ((Id.GetType() == typeof(string) && Id.ToString() != "") || ((Id.GetType() == typeof(int) || Id.GetType() == typeof(Int16) || Id.GetType() == typeof(Int32) || Id.GetType() == typeof(Int64) || Id.GetType() == typeof(short)) && Id.ToString() != "0")) { ViewBag.IsNew = false; ViewBag.Operation = "Update"; _tokenManager.GenerateToken(); _ISpartane_FileApiConsumer.SetAuthHeader(_tokenManager.Token); _IIdentificacionApiConsumer.SetAuthHeader(_tokenManager.Token); var IdentificacionsData = _IIdentificacionApiConsumer.ListaSelAll(0, 1000, "Identificacion.Clave=" + Id, "").Resource.Identificacions; if (IdentificacionsData != null && IdentificacionsData.Count > 0) { var IdentificacionData = IdentificacionsData.First(); varIdentificacion = new IdentificacionModel { Clave = IdentificacionData.Clave , Descripcion = IdentificacionData.Descripcion }; } } if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } ViewBag.Consult = consult == 1; if (consult == 1) { ViewBag.Operation = "Consult"; } var viewInEframe = false; var isPartial = false; var isMR = false; var nameMR = string.Empty; var nameAttribute = string.Empty; if (Request.QueryString["isPartial"] != null) { isPartial = Convert.ToBoolean(Request.QueryString["isPartial"]); } if (Request.QueryString["isMR"] != null) { isMR = Convert.ToBoolean(Request.QueryString["isMR"]); } if (Request.QueryString["nameMR"] != null) { nameMR = Request.QueryString["nameMR"].ToString(); } if (Request.QueryString["nameAttribute"] != null) { nameAttribute = Request.QueryString["nameAttribute"].ToString(); } if (Request.QueryString["viewInEframe"] != null) { viewInEframe = Convert.ToBoolean(Request.QueryString["viewInEframe"]); } ViewBag.isPartial = isPartial; ViewBag.isMR = isMR; ViewBag.nameMR = nameMR; ViewBag.nameAttribute = nameAttribute; ViewBag.viewInEframe = viewInEframe; return(View(varIdentificacion)); }