private void BtnXoa_ItemClick(object sender, ItemClickEventArgs e) { if (XtraMessageBox.Show("Bạn có chắc chắn muốn xóa ?", "CẢNH BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.No) { return; } int rowIndex = gvMain.FocusedRowHandle; string colID = "Product_ID"; string value = gvMain.GetRowCellValue(rowIndex, colID).ToString(); if (BUS_HangHoa.KiemTraHH(value) == true) { BUS_HangHoa.XoaHH(value); Action.Module = "Hàng Hóa"; Action.ActionName = "Xóa"; Action.Reference = value; Action.LuuThongTin(); LoadData(); } else { return; } }
private void btnLuu_Click(object sender, EventArgs e) { if (txtTen.Text == "") { error.SetError(txtTen, "Vui lòng điền thông tin !"); } else { error.SetError(txtTen, string.Empty); } if (lePhanLoai.Text == "") { error.SetError(lePhanLoai, "Vui lòng điền thông tin !"); } else { error.SetError(lePhanLoai, string.Empty); } if (leDonVi.Text == "") { error.SetError(leDonVi, "Vui lòng điền thông tin !"); } else { error.SetError(leDonVi, string.Empty); } if (txtMa.Text == "") { error.SetError(txtMa, "Vui lòng điền thông tin !"); } else if (add == true && BUS_HangHoa.KiemTraHH(txtMa.Text)) { error.SetError(txtMa, "Mã đã tồn tại, vui lòng chọn mã khác !"); } else { error.SetError(txtMa, string.Empty); } if (error.GetError(txtMa) == "" && error.GetError(txtTen) == "" && error.GetError(leDonVi) == "" && error.GetError(lePhanLoai) == "") { if (add == true) { xlThem(); } else { xlSua(); } } }