private void Get_Data(KT_UNG_LUONG obj, int position) { try { obj.STT = Utils.CIntDef(gridView1.GetRowCellValue(position, "STT"), 0); obj.LOAI_BL = Utils.CStrDef(gridView1.GetRowCellValue(position, "LOAI_BL"), ""); obj.NAM = Utils.CStrDef(gridView1.GetRowCellValue(position, "NAM"), ""); obj.THANG = Utils.CStrDef(gridView1.GetRowCellValue(position, "THANG"), ""); obj.MA_NV = Utils.CStrDef(gridView1.GetRowCellValue(position, "MA_NV"), ""); obj.TEN_NV = Utils.CStrDef(gridView1.GetRowCellValue(position, "TEN_NV"), ""); obj.PHONG_BAN = Utils.CStrDef(gridView1.GetRowCellValue(position, "PHONG_BAN"), ""); obj.TEN_PHONG_BAN = Utils.CStrDef(gridView1.GetRowCellValue(position, "TEN_PHONG_BAN"), ""); obj.LUONG_CB = Utils.CDblDef(gridView1.GetRowCellValue(position, "LUONG_CB"), 0); obj.TAM_UNG = Utils.CDblDef(gridView1.GetRowCellValue(position, "TAM_UNG"), 0); obj.TRANG_THAI = Utils.CIntDef(gridView1.GetRowCellValue(position, "TRANG_THAI"), 0); } catch (Exception ex) { MessageBox.Show(ex.Message, "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
partial void DeleteKT_UNG_LUONG(KT_UNG_LUONG instance);
partial void UpdateKT_UNG_LUONG(KT_UNG_LUONG instance);
partial void InsertKT_UNG_LUONG(KT_UNG_LUONG instance);
private void gridView1_ValidateRow(object sender, DevExpress.XtraGrid.Views.Base.ValidateRowEventArgs e) { try { GridView view = sender as GridView; _KTUNGLUONGRepo = new KTUNGLUONGRepo(); //Kiểm tra đây là dòng dữ liệu mới hay cũ, nếu là mới thì mình insert if (view.IsNewItemRow(e.RowHandle)) { //e.RowHandle trả về giá trị int là thứ tự của dòng hiện tại KT_UNG_LUONG obj = new KT_UNG_LUONG(); Get_Data(obj, e.RowHandle); _KTUNGLUONGRepo.Create(obj); } //Cũ thì update else { int id = Utils.CIntDef(gridView1.GetRowCellValue(e.RowHandle, "ID").ToString(), 0); KT_UNG_LUONG obj = _KTUNGLUONGRepo.GetById(id); if (obj != null) { Get_Data(obj, e.RowHandle); _KTUNGLUONGRepo.Update(obj); } } Load_Data(); } catch (Exception ex) { e.Valid = false; MessageBox.Show(ex.Message, "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void Save_Duplicate() { try { if (MessageBox.Show("Bạn có muốn copy dòng này thành dòng mới?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { _KTUNGLUONGRepo = new KTUNGLUONGRepo(); KT_UNG_LUONG obj = new KT_UNG_LUONG(); Get_Data(obj, gridView1.FocusedRowHandle); _KTUNGLUONGRepo.Create(obj); MessageBox.Show("Đã copy dòng này vào cuối bảng!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (Exception ex) { MessageBox.Show(ex.Message, "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }