public ActionResult DocumentViewerExportToMuaMoi()
        {
            var report = new CongCuDungCu.Reports.rpMuaMoi();

            report.getIDDonViCo(System.Web.HttpContext.Current.User.Identity.Name);
            report.Fill(AccountDataProvider.GetSystemDate());
            return(DocumentViewerExtension.ExportTo(report));
        }
        public ActionResult rpMuaMoiPartial()
        {
            var report = new CongCuDungCu.Reports.rpMuaMoi();

            report.getIDDonViCo(System.Web.HttpContext.Current.User.Identity.Name);
            report.Fill(AccountDataProvider.GetSystemDate());
            ViewData["Report"] = report;
            return(PartialView("rpMuaMoiPartial"));
        }