Exemplo n.º 1
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, 44412);

            ViewBag.Permission = permission;
            var varDetalle_Contactos_Empresa = new Detalle_Contactos_EmpresaModel();

            ViewBag.ObjectId  = "44412";
            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_Contactos_EmpresaApiConsumer.SetAuthHeader(_tokenManager.Token);
                var Detalle_Contactos_EmpresaData = _IDetalle_Contactos_EmpresaApiConsumer.GetByKeyComplete(Id).Resource.Detalle_Contactos_Empresas[0];
                if (Detalle_Contactos_EmpresaData == null)
                {
                    return(HttpNotFound());
                }

                varDetalle_Contactos_Empresa = new Detalle_Contactos_EmpresaModel
                {
                    Folio                = (int)Detalle_Contactos_EmpresaData.Folio
                    , Nombre_completo    = Detalle_Contactos_EmpresaData.Nombre_completo
                    , Correo             = Detalle_Contactos_EmpresaData.Correo
                    , Telefono           = Detalle_Contactos_EmpresaData.Telefono
                    , Contacto_Principal = Detalle_Contactos_EmpresaData.Contacto_Principal.GetValueOrDefault()
                    , Area               = Detalle_Contactos_EmpresaData.Area
                    , AreaNombre         = CultureHelper.GetTraduction(Convert.ToString(Detalle_Contactos_EmpresaData.Area), "areas_Empresas") ?? (string)Detalle_Contactos_EmpresaData.Area_areas_Empresas.Nombre
                    , Acceso_al_Sistema  = Detalle_Contactos_EmpresaData.Acceso_al_Sistema.GetValueOrDefault()
                    , Nombre_de_usuario  = Detalle_Contactos_EmpresaData.Nombre_de_usuario
                    , Recibe_Alertas     = Detalle_Contactos_EmpresaData.Recibe_Alertas.GetValueOrDefault()
                    , Estatus            = Detalle_Contactos_EmpresaData.Estatus
                    , EstatusDescripcion = CultureHelper.GetTraduction(Convert.ToString(Detalle_Contactos_EmpresaData.Estatus), "Estatus") ?? (string)Detalle_Contactos_EmpresaData.Estatus_Estatus.Descripcion
                };
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }

            _Iareas_EmpresasApiConsumer.SetAuthHeader(_tokenManager.Token);
            var areas_Empresass_Area = _Iareas_EmpresasApiConsumer.SelAll(true);

            if (areas_Empresass_Area != null && areas_Empresass_Area.Resource != null)
            {
                ViewBag.areas_Empresass_Area = areas_Empresass_Area.Resource.Where(m => m.Nombre != null).OrderBy(m => m.Nombre).Select(m => new SelectListItem
                {
                    Text = CultureHelper.GetTraduction(Convert.ToString(m.Clave), "areas_Empresas", "Nombre") ?? m.Nombre.ToString(), Value = Convert.ToString(m.Clave)
                }).ToList();
            }
            _IEstatusApiConsumer.SetAuthHeader(_tokenManager.Token);
            var Estatuss_Estatus = _IEstatusApiConsumer.SelAll(true);

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


            ViewBag.Consult = consult == 1;
            if (consult == 1)
            {
                ViewBag.Operation = "Consult";
            }
            return(View(varDetalle_Contactos_Empresa));
        }
Exemplo n.º 2
0
        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, 44409, ModuleId);

            if ((!permission.New && Id.ToString() == "0") || (!permission.Edit && Id.ToString() != "0" && (!permission.Consult && consult == 1)))
            {
                Response.Redirect("~/");
            }
            ViewBag.Permission = permission;
            var varareas_Empresas = new areas_EmpresasModel();

            varareas_Empresas.Clave = Id;

            ViewBag.ObjectId  = "44409";
            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);
                _Iareas_EmpresasApiConsumer.SetAuthHeader(_tokenManager.Token);
                var areas_EmpresassData = _Iareas_EmpresasApiConsumer.ListaSelAll(0, 1000, "areas_Empresas.Clave=" + Id, "").Resource.areas_Empresass;

                if (areas_EmpresassData != null && areas_EmpresassData.Count > 0)
                {
                    var areas_EmpresasData = areas_EmpresassData.First();
                    varareas_Empresas = new areas_EmpresasModel
                    {
                        Clave    = areas_EmpresasData.Clave
                        , Nombre = areas_EmpresasData.Nombre
                    };
                }
            }
            if (!_tokenManager.GenerateToken())
            {
                return(Json(null, JsonRequestBehavior.AllowGet));
            }



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

            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();
            }

            ViewBag.isPartial     = isPartial;
            ViewBag.isMR          = isMR;
            ViewBag.nameMR        = nameMR;
            ViewBag.nameAttribute = nameAttribute;


            return(View(varareas_Empresas));
        }