public ActionResult DocumentViewerExportToNhapKho() { var report = new CongCuDungCu.Reports.rpNhapKho(); report.getIDDonVi(System.Web.HttpContext.Current.User.Identity.Name); report.Fill(AccountDataProvider.GetSystemDate()); return(DocumentViewerExtension.ExportTo(report)); }
public ActionResult rpNhapKhoPartial() { var report = new CongCuDungCu.Reports.rpNhapKho(); report.getIDDonVi(System.Web.HttpContext.Current.User.Identity.Name); report.Fill(AccountDataProvider.GetSystemDate()); ViewData["Report"] = report; return(PartialView("rpNhapKhoPartial")); }