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, 44571);

            ViewBag.Permission = permission;
            var varDetalle_Planes_de_Rutinas = new Detalle_Planes_de_RutinasModel();

            ViewBag.ObjectId  = "44571";
            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_Planes_de_RutinasApiConsumer.SetAuthHeader(_tokenManager.Token);
                var Detalle_Planes_de_RutinasData = _IDetalle_Planes_de_RutinasApiConsumer.GetByKeyComplete(Id).Resource.Detalle_Planes_de_Rutinass[0];
                if (Detalle_Planes_de_RutinasData == null)
                {
                    return(HttpNotFound());
                }

                varDetalle_Planes_de_Rutinas = new Detalle_Planes_de_RutinasModel
                {
                    Folio                              = (int)Detalle_Planes_de_RutinasData.Folio
                    , Numero_de_Dia                    = Detalle_Planes_de_RutinasData.Numero_de_Dia
                    , Numero_de_DiaDia                 = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_de_RutinasData.Numero_de_Dia), "Dias_de_la_semana") ?? (string)Detalle_Planes_de_RutinasData.Numero_de_Dia_Dias_de_la_semana.Dia
                    , Fecha                            = (Detalle_Planes_de_RutinasData.Fecha == null ? string.Empty : Convert.ToDateTime(Detalle_Planes_de_RutinasData.Fecha).ToString(ConfigurationProperty.DateFormat))
                    , Orden_de_Realizacion             = Detalle_Planes_de_RutinasData.Orden_de_Realizacion
                    , Secuencia_del_Ejercicio          = Detalle_Planes_de_RutinasData.Secuencia_del_Ejercicio
                    , Enfoque_del_Ejercicio            = Detalle_Planes_de_RutinasData.Enfoque_del_Ejercicio
                    , Enfoque_del_EjercicioDescripcion = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_de_RutinasData.Enfoque_del_Ejercicio), "Tipo_de_Enfoque_del_Ejercicio") ?? (string)Detalle_Planes_de_RutinasData.Enfoque_del_Ejercicio_Tipo_de_Enfoque_del_Ejercicio.Descripcion
                    , Ejercicio                        = Detalle_Planes_de_RutinasData.Ejercicio
                    , EjercicioNombre_del_Ejercicio    = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_de_RutinasData.Ejercicio), "Ejercicios") ?? (string)Detalle_Planes_de_RutinasData.Ejercicio_Ejercicios.Nombre_del_Ejercicio
                    , Realizado                        = Detalle_Planes_de_RutinasData.Realizado.GetValueOrDefault()
                };
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }

            _IDias_de_la_semanaApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Dias_de_la_semanas_Numero_de_Dia = _IDias_de_la_semanaApiConsumer.SelAll(true);

            if (Dias_de_la_semanas_Numero_de_Dia != null && Dias_de_la_semanas_Numero_de_Dia.Resource != null)
            {
                ViewBag.Dias_de_la_semanas_Numero_de_Dia = Dias_de_la_semanas_Numero_de_Dia.Resource.Where(m => m.Dia != null).OrderBy(m => m.Dia).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Dias_de_la_semana", "Dia") ?? m.Dia.ToString(), Value = Convert.ToString(m.Clave)
                }).ToList();
            }
            _ITipo_de_Enfoque_del_EjercicioApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Tipo_de_Enfoque_del_Ejercicios_Enfoque_del_Ejercicio = _ITipo_de_Enfoque_del_EjercicioApiConsumer.SelAll(true);

            if (Tipo_de_Enfoque_del_Ejercicios_Enfoque_del_Ejercicio != null && Tipo_de_Enfoque_del_Ejercicios_Enfoque_del_Ejercicio.Resource != null)
            {
                ViewBag.Tipo_de_Enfoque_del_Ejercicios_Enfoque_del_Ejercicio = Tipo_de_Enfoque_del_Ejercicios_Enfoque_del_Ejercicio.Resource.Where(m => m.Descripcion != null).OrderBy(m => m.Descripcion).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Folio), "Tipo_de_Enfoque_del_Ejercicio", "Descripcion") ?? m.Descripcion.ToString(), Value = Convert.ToString(m.Folio)
                }).ToList();
            }
            _IEjerciciosApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Ejercicioss_Ejercicio = _IEjerciciosApiConsumer.SelAll(true);

            if (Ejercicioss_Ejercicio != null && Ejercicioss_Ejercicio.Resource != null)
            {
                ViewBag.Ejercicioss_Ejercicio = Ejercicioss_Ejercicio.Resource.Where(m => m.Nombre_del_Ejercicio != null).OrderBy(m => m.Nombre_del_Ejercicio).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Ejercicios", "Nombre_del_Ejercicio") ?? m.Nombre_del_Ejercicio.ToString(), Value = Convert.ToString(m.Clave)
                }).ToList();
            }


            ViewBag.Consult = consult == 1;
            if (consult == 1)
            {
                ViewBag.Operation = "Consult";
            }
            return(View(varDetalle_Planes_de_Rutinas));
        }
예제 #2
0
        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, 44569);

            ViewBag.Permission = permission;
            var varDetalle_Planes_Alimenticios = new Detalle_Planes_AlimenticiosModel();

            ViewBag.ObjectId  = "44569";
            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_Planes_AlimenticiosApiConsumer.SetAuthHeader(_tokenManager.Token);
                var Detalle_Planes_AlimenticiosData = _IDetalle_Planes_AlimenticiosApiConsumer.GetByKeyComplete(Id).Resource.Detalle_Planes_Alimenticioss[0];
                if (Detalle_Planes_AlimenticiosData == null)
                {
                    return(HttpNotFound());
                }

                varDetalle_Planes_Alimenticios = new Detalle_Planes_AlimenticiosModel
                {
                    Folio = (int)Detalle_Planes_AlimenticiosData.Folio
                    , Tiempo_de_Comida       = Detalle_Planes_AlimenticiosData.Tiempo_de_Comida
                    , Tiempo_de_ComidaComida = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_AlimenticiosData.Tiempo_de_Comida), "Tiempos_de_Comida") ?? (string)Detalle_Planes_AlimenticiosData.Tiempo_de_Comida_Tiempos_de_Comida.Comida
                    , Numero_de_Dia          = Detalle_Planes_AlimenticiosData.Numero_de_Dia
                    , Numero_de_DiaDia       = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_AlimenticiosData.Numero_de_Dia), "Dias_de_la_semana") ?? (string)Detalle_Planes_AlimenticiosData.Numero_de_Dia_Dias_de_la_semana.Dia
                    , Fecha    = (Detalle_Planes_AlimenticiosData.Fecha == null ? string.Empty : Convert.ToDateTime(Detalle_Planes_AlimenticiosData.Fecha).ToString(ConfigurationProperty.DateFormat))
                    , Platillo = Detalle_Planes_AlimenticiosData.Platillo
                    , PlatilloNombre_de_Platillo = CultureHelper.GetTraduction(Convert.ToString(Detalle_Planes_AlimenticiosData.Platillo), "Platillos") ?? (string)Detalle_Planes_AlimenticiosData.Platillo_Platillos.Nombre_de_Platillo
                    , Modificado = Detalle_Planes_AlimenticiosData.Modificado.GetValueOrDefault()
                };
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }

            _ITiempos_de_ComidaApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Tiempos_de_Comidas_Tiempo_de_Comida = _ITiempos_de_ComidaApiConsumer.SelAll(true);

            if (Tiempos_de_Comidas_Tiempo_de_Comida != null && Tiempos_de_Comidas_Tiempo_de_Comida.Resource != null)
            {
                ViewBag.Tiempos_de_Comidas_Tiempo_de_Comida = Tiempos_de_Comidas_Tiempo_de_Comida.Resource.Where(m => m.Comida != null).OrderBy(m => m.Comida).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Tiempos_de_Comida", "Comida") ?? m.Comida.ToString(), Value = Convert.ToString(m.Clave)
                }).ToList();
            }
            _IDias_de_la_semanaApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Dias_de_la_semanas_Numero_de_Dia = _IDias_de_la_semanaApiConsumer.SelAll(true);

            if (Dias_de_la_semanas_Numero_de_Dia != null && Dias_de_la_semanas_Numero_de_Dia.Resource != null)
            {
                ViewBag.Dias_de_la_semanas_Numero_de_Dia = Dias_de_la_semanas_Numero_de_Dia.Resource.Where(m => m.Dia != null).OrderBy(m => m.Dia).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "Dias_de_la_semana", "Dia") ?? m.Dia.ToString(), Value = Convert.ToString(m.Clave)
                }).ToList();
            }
            _IPlatillosApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Platilloss_Platillo = _IPlatillosApiConsumer.SelAll(true);

            if (Platilloss_Platillo != null && Platilloss_Platillo.Resource != null)
            {
                ViewBag.Platilloss_Platillo = Platilloss_Platillo.Resource.Where(m => m.Nombre_de_Platillo != null).OrderBy(m => m.Nombre_de_Platillo).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Folio), "Platillos", "Nombre_de_Platillo") ?? m.Nombre_de_Platillo.ToString(), Value = Convert.ToString(m.Folio)
                }).ToList();
            }


            ViewBag.Consult = consult == 1;
            if (consult == 1)
            {
                ViewBag.Operation = "Consult";
            }
            return(View(varDetalle_Planes_Alimenticios));
        }