private void btn_luu_Click(object sender, EventArgs e) { if (txt_ho.Text == "" || txt_ten.Text == "" || cbo_gioiTinh.Text == "" || dt_ngaySinh.EditValue == null || txt_sdt.Text == "" || txt_diaChi.Text == "" || lke_khoaHoc.Text == "" || lke_lopHoc.Text == "") { XtraMessageBox.Show("Chưa điền đầy đủ thông tin!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (hvDTO != null) { GetDetail(); int kq = hvBUS.UpdateHV(hvDTO); if (kq == 1) { XtraMessageBox.Show(string.Format("Sửa học viên mã {0} thành công!", hvDTO.MSHV), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } else { XtraMessageBox.Show("Sửa không thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } } }
private void btn_luu_Click(object sender, EventArgs e) { if (txt_ho.Text == "" || txt_ten.Text == "" || cbo_gioiTinh.Text == "" || dt_ngaySinh.EditValue == null || txt_sdt.Text == "" || txt_diaChi.Text == "" || lke_khoaHoc.Text == "" || lke_lopHoc.Text == "") { XtraMessageBox.Show("Chưa điền đầy đủ thông tin!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (dt_ngaySinh.DateTime.Year >= DateTime.Now.Year) { XtraMessageBox.Show("Năm sinh không được lớn hơn hoặc bằng năm hiện tại!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (Math.Abs(dt_ngaySinh.DateTime.Year - DateTime.Now.Year) < 6) { XtraMessageBox.Show("Học viên phải trên 6 tuổi!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (txt_sdt.Text.Length < 10) { XtraMessageBox.Show("Số điện thoại phải đủ 10 số!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (!txt_sdt.Text.StartsWith("0")) { XtraMessageBox.Show("Số điện thoại phải bắt đầu bằng số 0!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (Utilities.IsValidEmail(txt_email.Text.Trim()) == false) { XtraMessageBox.Show("Địa chỉ email sai định dạng!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { if (hvDTO != null) { GetDetail(); int kq = hvBUS.UpdateHV(hvDTO); if (kq == 1) { XtraMessageBox.Show(string.Format("Sửa học viên mã {0} thành công!", hvDTO.MSHV), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); ucQLHV_DanhSach.LoadDSHV(); this.Close(); } else { XtraMessageBox.Show("Sửa không thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning); } } } } } } } } }