private void btnXoa_Click(object sender, EventArgs e) { if (KtraQuyen_Update() == true) { if (MessageBoxEx.Show("Bạn có chắc chắn xóa phiếu này không?", "DELETE", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { _PhieuCanCtrl.XoaPhieuCan(Utilities.PhieuCan); Utilities.frmMain.lbThongBao.Text = "Đã xóa."; this.Close(); } } else { Utilities.frmMain.lbThongBao.Text = "Sai mã PIN."; } }
private void btnXoaphieu_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(txtMaPhieu.Text)) { return; } if (KtraQuyen_Update()) { if (MessageBoxEx.Show("Bạn có chắc chắn xóa phiếu này không?", "DELETE", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { _PhieuCanCtrl.XoaPhieuCan(txtMaPhieu.Text); Utilities.frmMain.lbThongBao.Text = "Đã xóa."; //reset UI resetUI(); // reload phieu can hienThiPhieuCan(); } } }