public ActionResult INV_008(cl_filtros_inventario_Info model)
        {
            INV_008_Rpt report = new INV_008_Rpt();

            report.p_IdEmpresa.Value           = model.IdEmpresa;
            report.p_IdSucursal.Value          = model.IdSucursal;
            report.p_IdBodega.Value            = model.IdBodega;
            report.p_mostrar_saldos_en_0.Value = model.mostrar_saldos_en_0;
            report.usuario      = SessionFixed.IdUsuario;
            report.empresa      = SessionFixed.NomEmpresa;
            report.lst_producto = List_decimal.get_list();
            cargar_combos(model);
            ViewBag.Report = report;
            return(View(model));
        }
        public ActionResult INV_008()
        {
            cl_filtros_inventario_Info model = new cl_filtros_inventario_Info
            {
                IdEmpresa = Convert.ToInt32(SessionFixed.IdEmpresa)
            };

            List_decimal.set_list(new List <in_Producto_Info>());
            cargar_combos(model);
            INV_008_Rpt report = new INV_008_Rpt();

            report.p_IdEmpresa.Value           = model.IdEmpresa;
            report.p_IdSucursal.Value          = model.IdSucursal;
            report.p_IdBodega.Value            = model.IdBodega;
            report.p_mostrar_saldos_en_0.Value = model.mostrar_saldos_en_0;
            report.usuario = SessionFixed.IdUsuario;
            report.empresa = SessionFixed.NomEmpresa;
            ViewBag.Report = report;
            return(View(model));
        }