Ejemplo n.º 1
0
 private void cargar_combos()
 {
     try
     {
         IdEmpresa                       = GetIdEmpresa();
         ViewBag.lst_area                = bus_area.get_list(IdEmpresa, false);
         ViewBag.lst_banco               = bus_banco.get_list(false);
         ViewBag.lst_cargo               = bus_cargo.get_list(IdEmpresa, false);
         ViewBag.lst_division            = bus_division.get_list(IdEmpresa, false);
         ViewBag.lst_departamento        = bus_departamento.get_list(IdEmpresa, false);
         ViewBag.lst_documento           = bus_catalogo_general.get_list(3, false);
         ViewBag.lst_sexo                = bus_catalogo_general.get_list(1, false);
         ViewBag.lst_estado_civil        = bus_catalogo_general.get_list(2, false);
         ViewBag.lst_tipo_docu           = bus_catalogo_general.get_list(3, false);
         ViewBag.lst_estado_empleado     = bus_catalogorrhh.get_list_x_tipo(25);
         ViewBag.lst_pais                = bus_pais.get_list(false);
         ViewBag.lst_ciudad              = bus_ciudad.get_list("", false);
         ViewBag.lst_empleado            = bus_empleado.get_list_combo(IdEmpresa);
         ViewBag.lst_punto_cargo         = bus_puntocargo.get_list(IdEmpresa, false);
         ViewBag.lst_horario             = bus_horario.get_list(IdEmpresa, false);
         ViewBag.lst_tipo_discapacidad   = bus_catalogorrhh.get_list_x_tipo(26);
         ViewBag.lst_tipo_doc_sustutuido = bus_catalogorrhh.get_list_x_tipo(29);
         ViewBag.lst_tipo_sangre         = bus_catalogorrhh.get_list_x_tipo(7);
         ViewBag.lst_tipo_licencia       = bus_catalogorrhh.get_list_x_tipo(10);
         ViewBag.lst_tipo_cuenta         = bus_catalogorrhh.get_list_x_tipo(9);
         ViewBag.lst_tipo_empleado       = bus_catalogorrhh.get_list_x_tipo(8);
         ViewBag.lst_sucursal            = bus_sucursal.get_list(IdEmpresa, false);
     }
     catch (Exception)
     {
         throw;
     }
 }
Ejemplo n.º 2
0
        public ActionResult Index()
        {
            #region Validar Session
            if (string.IsNullOrEmpty(SessionFixed.IdTransaccionSession))
            {
                return(RedirectToAction("Login", new { Area = "", Controller = "Account" }));
            }
            SessionFixed.IdTransaccionSession       = (Convert.ToDecimal(SessionFixed.IdTransaccionSession) + 1).ToString();
            SessionFixed.IdTransaccionSessionActual = SessionFixed.IdTransaccionSession;
            #endregion

            #region Permisos
            seg_Menu_x_Empresa_x_Usuario_Info info = bus_permisos.get_list_menu_accion(Convert.ToInt32(SessionFixed.IdEmpresa), SessionFixed.IdUsuario, "General", "Pais", "Index");
            ViewBag.Nuevo = info.Nuevo;
            #endregion

            tb_pais_Info model = new tb_pais_Info
            {
                IdTransaccionSession = Convert.ToDecimal(SessionFixed.IdTransaccionSession),
            };

            var lst = bus_pais.get_list(true);
            Lista_Pais.set_list(lst, model.IdTransaccionSession);
            return(View(model));
        }
Ejemplo n.º 3
0
        public ActionResult GridViewPartial_pais()
        {
            List <tb_pais_Info> model = new List <tb_pais_Info>();

            model = bus_pais.get_list(true);
            return(PartialView("_GridViewPartial_pais", model));
        }
Ejemplo n.º 4
0
        private void cargar_combos(string IdPais)
        {
            var lst_pais = bus_pais.get_list(false);

            ViewBag.lst_pais = lst_pais;
            var lst_region = bus_region.get_list(IdPais, false);

            ViewBag.lst_region = lst_region;
        }
        private void cargar_combos(int IdEmpresa)
        {
            tb_pais_Bus bus_pais = new tb_pais_Bus();
            var         lst_pais = bus_pais.get_list(false);

            lst_pais.Add(new Info.General.tb_pais_Info
            {
                IdPais = "",
                Nombre = "Todos"
            });
            ViewBag.lst_pais = lst_pais;

            in_Marca_Bus bus_marca = new in_Marca_Bus();
            var          lst_marca = bus_marca.get_list(IdEmpresa, false);

            lst_marca.Add(new Info.Inventario.in_Marca_Info
            {
                IdMarca     = 0,
                Descripcion = "Todas"
            });
            ViewBag.lst_marca = lst_marca;
        }
Ejemplo n.º 6
0
        private void cargar_combos()
        {
            var lst_paises = bus_paises.get_list(false);

            ViewBag.lst_paises = lst_paises;

            var lst_ciudades = bus_ciudad.get_list("09", false);

            ViewBag.lst_ciudades = lst_ciudades;

            var lst_forma_pago = bus_catalogo.get_list(2);

            ViewBag.lst_forma_pago = lst_forma_pago;

            var lst_catalogos = bus_catalogo.get_list(1);

            ViewBag.lst_catalogos = lst_catalogos;

            var lst_monedas = bus_moneda.get_list();

            ViewBag.lst_monedas = lst_monedas;
        }
Ejemplo n.º 7
0
        private void cargar_combos()
        {
            var lst_pais = bus_pais.get_list(false);

            ViewBag.lst_pais = lst_pais;
        }