Beispiel #1
0
        private void BtnDelete_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            int id = (int)GrvCreateJob.GetFocusedRowCellValue("Id_CongViec");

            try
            {
                using (_theoDoiVanBanEntities = new TheoDoiVanBanEntities())
                {
                    var _exits = _theoDoiVanBanEntities.GetOneCongViec(id).FirstOrDefault();
                    if (_exits.StatusForward == true)
                    {
                        XtraMessageBox.Show("Công việc đã được giao.\nKhông thể xóa");
                    }
                    else
                    {
                        _theoDoiVanBanEntities.DeleteCreateJob(id);
                        XtraMessageBox.Show("Xóa thông tin thành công");
                    }
                }
                GetCreateJob();
            }
            catch (Exception)
            {
                XtraMessageBox.Show("Vui lòng xóa ở bảng dưới trước khi xóa ở đây");
            }
        }
Beispiel #2
0
 private void BtnDelete_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     try
     {
         using (_theoDoiVanBanEntities = new TheoDoiVanBanEntities())
         {
             if (StatusForward != true)
             {
                 _theoDoiVanBanEntities.DeleteCreateJob(IdEdit);
                 XtraMessageBox.Show("Xóa thông tin thành công");
             }
             if (StatusForward == true)
             {
                 XtraMessageBox.Show("Công việc đã được giao không thể sửa, xóa");
             }
         }
         GetAllNull();
     }
     catch (Exception)
     {
         XtraMessageBox.Show("Thông tin không có trong cơ sở dữ liệu");
     }
 }