public ActionResult Index(cl_filtros_inventario_Info model) { INV_004_Rpt report = new INV_004_Rpt(); report.p_IdEmpresa.Value = model.IdEmpresa; report.p_IdSucursal.Value = model.IdSucursal; report.p_IdBodega.Value = model.IdBodega; report.p_IdProducto.Value = model.IdProductoPadre == null ? 0 : model.IdProductoPadre; report.p_IdMarca.Value = model.IdMarca; report.usuario = SessionFixed.IdUsuario.ToString(); report.empresa = SessionFixed.NomEmpresa.ToString(); cargar_combos(model.IdEmpresa); ViewBag.Report_s = report; INV_012_Rpt report_list = new INV_012_Rpt(); report_list.p_IdEmpresa.Value = model.IdEmpresa; report_list.p_IdSucursal.Value = model.IdSucursal; report_list.p_IdBodega.Value = model.IdBodega; report_list.p_IdProducto.Value = model.IdProductoPadre == null ? 0 : model.IdProductoPadre; report_list.p_IdMarca.Value = model.IdMarca; report_list.p_fechaIni.Value = model.fecha_fin; report_list.p_dIAS.Value = model.dIAS; report_list.usuario = SessionFixed.IdUsuario.ToString(); report_list.empresa = SessionFixed.NomEmpresa.ToString(); cargar_combos(model.IdEmpresa); ViewBag.Report_l = report_list; return(View(model)); }
public ActionResult INV_004(cl_filtros_inventario_Info model) { INV_004_Rpt report = new INV_004_Rpt(); report.p_IdEmpresa.Value = model.IdEmpresa; report.p_IdSucursal.Value = model.IdSucursal; report.p_IdBodega.Value = model.IdBodega; report.p_IdProducto.Value = model.IdProductoPadre == null ? 0 : model.IdProductoPadre; report.p_IdMarca.Value = model.IdMarca; cargar_combos(model); report.usuario = SessionFixed.IdUsuario.ToString(); report.empresa = SessionFixed.NomEmpresa.ToString(); ViewBag.Report = report; return(View(model)); }