Esempio n. 1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            crpt_SoGhiChep rpt = new crpt_SoGhiChep();

            rpt.Site = this.Site;
            return(rpt);
        }
Esempio n. 2
0
 private void cmdINPHIEU_Click(object sender, EventArgs e)
 {
     try
     {
         string s = "";
         if (dtpFromDate.Value.Date == dtpToDate.Value.Date)
         {
             s = string.Format("{0}Ngày {1}", s, dtpFromDate.Value.ToString("dd/MM/yyyy"));
         }
         else
         {
             s = string.Format("{0}{1}", s,
                               string.Format("Từ ngày {0} đến ngày {1}", dtpFromDate.Value.ToString("dd/MM/yyyy"),
                                             dtpToDate.Value.ToString("dd/MM/yyyy")));
         }
         dtSoghichep = BaocaoSoghichep(dtpFromDate.Value,dtpToDate.Value).GetDataSet().Tables[0];
         int totalBN = dtSoghichep.Rows.Count;
         if (dtSoghichep.Rows.Count <= 0)
         {
             Utility.ShowMsg("Không có dữ liệu để in");
         }
         else
         {
             var crpt = new crpt_SoGhiChep();
             var objForm = new frmPrintPreview("In Báo Cáo", crpt, true, true);
             crpt.SetDataSource(dtSoghichep);
             crpt.DataDefinition.FormulaFields["Formula_1"].Text = "";
             crpt.SetParameterValue("BranchName", ManagementUnit.gv_sBranchName);
             crpt.SetParameterValue("ParentBranchName", ManagementUnit.gv_sParentBranchName);
             crpt.SetParameterValue("TestDate",s);
             crpt.SetParameterValue("PrintDate",dtpPrintDate.Value);
             crpt.SetParameterValue("TotalBN", totalBN);
             objForm.crptViewer.ReportSource = crpt;
             objForm.ShowDialog();
         }
     }
     catch (Exception exception)
     {
         Utility.ShowMsg("Lỗi trong quá trình xuất báo cáo" + exception);
     }
 }
Esempio n. 3
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     crpt_SoGhiChep rpt = new crpt_SoGhiChep();
     rpt.Site = this.Site;
     return rpt;
 }