public ActionResult INV_009(cl_filtros_inventario_Info model)
        {
            INV_009_Rpt report = new INV_009_Rpt();

            report.p_IdEmpresa.Value       = model.IdEmpresa;
            report.p_IdSucursal.Value      = model.IdSucursal;
            report.p_IdBodega.Value        = model.IdBodega;
            report.p_IdMarca.Value         = model.IdMarca;
            report.p_IdProductoPadre.Value = model.IdProductoPadre == null ? 0 : Convert.ToDecimal(model.IdProductoPadre);
            report.p_fechaCorte.Value      = model.fecha_fin;
            cargar_combos(model);
            ViewBag.Report = report;
            return(View(model));
        }
        public ActionResult INV_009()
        {
            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_009_Rpt report = new INV_009_Rpt();

            report.p_IdEmpresa.Value       = model.IdEmpresa;
            report.p_IdSucursal.Value      = model.IdSucursal;
            report.p_IdBodega.Value        = model.IdBodega;
            report.p_IdMarca.Value         = model.IdMarca;
            report.p_IdProductoPadre.Value = model.IdProductoPadre == null ? 0 : Convert.ToDecimal(model.IdProductoPadre);
            report.p_fechaCorte.Value      = model.fecha_fin;
            report.usuario = SessionFixed.IdUsuario;
            report.empresa = SessionFixed.NomEmpresa;
            ViewBag.Report = report;
            return(View(model));
        }