Example #1
0
        private void fillRptSoThuTienTrang1(RptSoThuTienTrang1 rpt)
        {
            SoThuTienService soThuTienService = new SoThuTienService();
            List <QLMamNon.Dao.QLMamNonDs.ViewBangThuTienRow> rows = soThuTienService.EvaluateViewBangThuTienRowsForReport(this.getViewBangThuTienRowsFromMainGrid(), this.ngayTinh);

            rpt.viewBangThuTienRowbindingSource.DataSource = rows;
            rpt.Ngay.Value = this.ngayTinh;
        }
Example #2
0
 private void btnPrint1_Click(object sender, EventArgs e)
 {
     if (this.isValidNgayTinhAndLop() && !this.isDataTableEmpty())
     {
         RptSoThuTienTrang1 rpt = new RptSoThuTienTrang1();
         this.fillRptSoThuTienTrang1(rpt);
         FormMainFacade.ShowReport(rpt);
     }
 }