private void phieuchiBindingSource_CurrentChanged(object sender, EventArgs e) { if (this.isPhieuChiTab() && this.IsProcessChangingCurrentPCRow && this.phieuchiBindingSource.Current != null && !(this.phieuchiBindingSource.Current as DataRowView).IsNew) { QLCMND.CMND.phieuchiRow row = (QLCMND.CMND.phieuchiRow)((DataRowView)this.phieuchiBindingSource.Current).Row; if (!row.IsngaylapNull()) { this.lblPCNgayLap.Text = string.Format("Ngày {0} tháng {1} năm {2}", row.ngaylap.Day, row.ngaylap.Month, row.ngaylap.Year); } this.HuyPC(); } }
private void fillReportPhieuChi(RptPhieuChi rpt) { QLCMND.CMND.phieuchiRow row = (QLCMND.CMND.phieuchiRow)((DataRowView)this.phieuchiBindingSource.Current).Row; rpt.lblHoTen.Text = row.hoten.ToUpper(); rpt.lblCMND.Text = row.cmnd; if (!row.IscapngayNull()) { rpt.lblCapNgay.Text = string.Format("{0:d}", row.capngay); } else { rpt.lblCapNgay.Text = ""; } if (!row.IsnoicapNull()) { rpt.lblNoiCap.Text = row.noicap; } else { rpt.lblNoiCap.Text = ""; } if (!row.IsdiachiNull()) { rpt.lblDiaChi.Text = row.diachi; } else { rpt.lblDiaChi.Text = ""; } if (!row.IslydoNull()) { rpt.lblLyDo.Text = row.lydo; } else { rpt.lblLyDo.Text = ""; } if (!row.IschungtugocNull()) { rpt.lblChungTuGoc.Text = row.chungtugoc; } else { rpt.lblChungTuGoc.Text = ""; } if (!row.IskemtheoNull()) { rpt.lblKemTheo.Text = row.kemtheo; } else { rpt.lblKemTheo.Text = ""; } rpt.lblSoTien.Text = string.Format("{0:n0}, đồng", row.sotien); rpt.lblSoTienChu.Text = " " + VNCurrency.ToString((double)row.sotien); if (!row.IsngaylapNull()) { rpt.lblNgayLap.Text = string.Format("Ngày {0} tháng {1} năm {2}", row.ngaylap.Day, row.ngaylap.Month, row.ngaylap.Year); } else { rpt.lblNgayLap.Text = ""; } if (!row.IsnotkNull()) { rpt.lblNoTK.Text = row.notk; } else { rpt.lblNoTK.Text = ""; } }
private void iPCLuu_ItemClick(object sender, ItemClickEventArgs e) { if (this.isPhieuChiTab() && this.phieuchiBindingSource.Current != null) { if (this.ValidatePhieuChiFields()) { QLCMND.CMND.phieuchiRow row = (QLCMND.CMND.phieuchiRow)((DataRowView)this.phieuchiBindingSource.Current).Row; if (row.IscreateddateNull()) { row.createddate = DateTime.Now; row.ngaylap = DateTime.Now; } this.IsPCAddingNew = false; this.phieuchiBindingSource.EndEdit(); this.cMND.phieuchi.GetChanges(); this.phieuchiTableAdapter.Update(this.cMND.phieuchi); this.cMND.phieuchi.AcceptChanges(); // Luu thong tin CMND int currentPos = this.cMNDBindingSource.Position; int position = this.cMNDBindingSource.Find("cmndid", row.cmnd); if (position >= 0) { this.cMNDBindingSource.Position = position; this.iCMNDHuy_ItemClick(sender, e); QLCMND.CMND.CMNDRow cmndRow = ((this.cMNDBindingSource.Current as DataRowView).Row as QLCMND.CMND.CMNDRow); cmndRow.ngaycap = this.txtPCNgayCap.DateTime; cmndRow.noicap = this.txtPCNoiCap.Text; cmndRow.diachi = this.txtPCDiaChi.Text; this.cMNDBindingSource.EndEdit(); this.cMND._CMND.GetChanges(); this.cMNDTableAdapter.Update(this.cMND._CMND); this.cMND._CMND.AcceptChanges(); } else { this.iCMNDHuy_ItemClick(sender, e); this.ThemCMND(); QLCMND.CMND.CMNDRow cmndRow = ((this.cMNDBindingSource.Current as DataRowView).Row as QLCMND.CMND.CMNDRow); cmndRow.ngaycap = this.txtPCNgayCap.DateTime; cmndRow.noicap = this.txtPCNoiCap.Text; cmndRow.hkthuongtru = this.txtPCDiaChi.Text; this.CapNhatCMND(); } this.cMNDBindingSource.Position = currentPos; } } else if (this.phieuchiBindingSource.Current == null) { var confirmResult = MessageBox.Show("Không có Phiếu chi nào trong danh sách hiện tại. Bạn có tạo một Phiếu chi mới không ??", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (confirmResult == DialogResult.Yes) { this.iPCThem_ItemClick(sender, e); } } }