Example #1
0
        private void btn_luu_Click(object sender, EventArgs e)
        {
            if (txt_ho.Text == "" || txt_ten.Text == "" ||
                cbo_gioiTinh.Text == "" || dt_ngaySinh.EditValue == null || dt_ngayLamViec.EditValue == null ||
                txt_email.Text == "" || txt_sdt.Text == "" || txt_diaChi.Text == "")
            {
                XtraMessageBox.Show("Chưa điền đầy đủ thông tin!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else
            {
                if (nvDTO != null)
                {
                    GetDetail();

                    int kq = nvBUS.UpdateNV(nvDTO);
                    if (kq == 1)
                    {
                        XtraMessageBox.Show(string.Format("Sửa nhân viên mã {0} thành công!", nvDTO.MaNV), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        ucQLNV_TrungTam.LoadDSNV_TT();
                        this.Close();
                    }
                    else
                    {
                        XtraMessageBox.Show("Sửa không thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    }
                }
            }
        }
 private void btn_qlnv_tt_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e)
 {
     Loading.ShowLoading();
     ShowForm(ucQLNV);
     ucQLNV.LoadDSNV_TT();
     Loading.HideLoading();
 }
Example #3
0
 private void btn_thoat_Click(object sender, EventArgs e)
 {
     ucQLNV_TrungTam.LoadDSNV_TT();
     this.Close();
 }