public ActionResult Create(int Id = 0, int consult = 0) { int ModuleId = (Session["CurrentModuleId"] != null) ? Convert.ToInt32(Session["CurrentModuleId"]) : 0; var permission = PermissionHelper.GetRoleObjectPermission(SessionHelper.Role, 45663); ViewBag.Permission = permission; var varDetalle_de_Amparo = new Detalle_de_AmparoModel(); ViewBag.ObjectId = "45663"; 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"; if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } _IDetalle_de_AmparoApiConsumer.SetAuthHeader(_tokenManager.Token); var Detalle_de_AmparoData = _IDetalle_de_AmparoApiConsumer.GetByKeyComplete(Id).Resource.Detalle_de_Amparos[0]; if (Detalle_de_AmparoData == null) { return(HttpNotFound()); } varDetalle_de_Amparo = new Detalle_de_AmparoModel { Clave = (int)Detalle_de_AmparoData.Clave , Tipo_de_Amparo = Detalle_de_AmparoData.Tipo_de_Amparo , Tipo_de_AmparoDescripcion = CultureHelper.GetTraduction(Convert.ToString(Detalle_de_AmparoData.Tipo_de_Amparo), "Tipo_de_Amparo") ?? (string)Detalle_de_AmparoData.Tipo_de_Amparo_Tipo_de_Amparo.Descripcion , Numero_de_Amparo = Detalle_de_AmparoData.Numero_de_Amparo , Fecha_Amparo = (Detalle_de_AmparoData.Fecha_Amparo == null ? string.Empty : Convert.ToDateTime(Detalle_de_AmparoData.Fecha_Amparo).ToString(ConfigurationProperty.DateFormat)) , Entidad_que_Emitio_Amparo = Detalle_de_AmparoData.Entidad_que_Emitio_Amparo , Entidad_que_Emitio_AmparoNombre = CultureHelper.GetTraduction(Convert.ToString(Detalle_de_AmparoData.Entidad_que_Emitio_Amparo), "Estado") ?? (string)Detalle_de_AmparoData.Entidad_que_Emitio_Amparo_Estado.Nombre , Resolucion = Detalle_de_AmparoData.Resolucion , ResolucionDescripcion = CultureHelper.GetTraduction(Convert.ToString(Detalle_de_AmparoData.Resolucion), "Tipo_de_Resolucion") ?? (string)Detalle_de_AmparoData.Resolucion_Tipo_de_Resolucion.Descripcion }; } if (!_tokenManager.GenerateToken()) { return(Json(null, JsonRequestBehavior.AllowGet)); } _ITipo_de_AmparoApiConsumer.SetAuthHeader(_tokenManager.Token); var Tipo_de_Amparos_Tipo_de_Amparo = _ITipo_de_AmparoApiConsumer.SelAll(true); if (Tipo_de_Amparos_Tipo_de_Amparo != null && Tipo_de_Amparos_Tipo_de_Amparo.Resource != null) { ViewBag.Tipo_de_Amparos_Tipo_de_Amparo = Tipo_de_Amparos_Tipo_de_Amparo.Resource.Where(m => m.Descripcion != null).OrderBy(m => m.Descripcion).Select(m => new SelectListItem { Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Tipo_de_Amparo", "Descripcion") ?? m.Descripcion.ToString(), Value = Convert.ToString(m.Clave) }).ToList(); } _ITipo_de_ResolucionApiConsumer.SetAuthHeader(_tokenManager.Token); var Tipo_de_Resolucions_Resolucion = _ITipo_de_ResolucionApiConsumer.SelAll(true); if (Tipo_de_Resolucions_Resolucion != null && Tipo_de_Resolucions_Resolucion.Resource != null) { ViewBag.Tipo_de_Resolucions_Resolucion = Tipo_de_Resolucions_Resolucion.Resource.Where(m => m.Descripcion != null).OrderBy(m => m.Descripcion).Select(m => new SelectListItem { Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Tipo_de_Resolucion", "Descripcion") ?? m.Descripcion.ToString(), Value = Convert.ToString(m.Clave) }).ToList(); } ViewBag.Consult = consult == 1; if (consult == 1) { ViewBag.Operation = "Consult"; } return(View(varDetalle_de_Amparo)); }
public ActionResult Create(int 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, 45662, ModuleId); if ((!permission.New && Id.ToString() == "0") || (!permission.Edit && Id.ToString() != "0" && (!permission.Consult && consult == 1))) { Response.Redirect("~/"); } ViewBag.Permission = permission; var varTipo_de_Amparo = new Tipo_de_AmparoModel(); varTipo_de_Amparo.Clave = Id; ViewBag.ObjectId = "45662"; 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); _ITipo_de_AmparoApiConsumer.SetAuthHeader(_tokenManager.Token); var Tipo_de_AmparosData = _ITipo_de_AmparoApiConsumer.ListaSelAll(0, 1000, "Tipo_de_Amparo.Clave=" + Id, "").Resource.Tipo_de_Amparos; if (Tipo_de_AmparosData != null && Tipo_de_AmparosData.Count > 0) { var Tipo_de_AmparoData = Tipo_de_AmparosData.First(); varTipo_de_Amparo = new Tipo_de_AmparoModel { Clave = Tipo_de_AmparoData.Clave , Descripcion = Tipo_de_AmparoData.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(varTipo_de_Amparo)); }