Ejemplo n.º 1
0
        private LOAIMATHANG getLOAIMATHANGByForm()
        {
            LOAIMATHANG ans = new LOAIMATHANG();

            try
            {
                ans.TEN = txtTenLoaiMatHang.Text;
            }
            catch { }

            return(ans);
        }
Ejemplo n.º 2
0
        private void btnSua_Click(object sender, EventArgs e)
        {
            if (!CheckLuaChon())
            {
                return;
            }

            if (btnSua.Text == "Sửa")
            {
                btnSua.Text     = "Lưu";
                btnXoa.Text     = "Hủy";
                btnThem.Enabled = false;

                UnlockControl();

                return;
            }

            if (btnSua.Text == "Lưu")
            {
                if (Check())
                {
                    btnSua.Text = "Sửa";
                    btnXoa.Text = "Xóa";

                    LockControl();

                    LOAIMATHANG cu  = getLOAIMATHANGByID();
                    LOAIMATHANG moi = getLOAIMATHANGByForm();
                    CapNhat(ref cu, moi);

                    try
                    {
                        db.SaveChanges();
                        MessageBox.Show("Sưa thông tin loại mặt hàng thành công",
                                        "Thông báo",
                                        MessageBoxButtons.OK,
                                        MessageBoxIcon.Information);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show("Sửa thông tin loại mặt hàng thất bại\n" + ex.Message,
                                        "Thông báo",
                                        MessageBoxButtons.OK,
                                        MessageBoxIcon.Error);
                    }
                    LoadDgvLOAIMATHANG();
                }

                return;
            }
        }
Ejemplo n.º 3
0
        private void btnXoa_Click(object sender, EventArgs e)
        {
            if (btnXoa.Text == "Xóa")
            {
                if (!CheckLuaChon())
                {
                    return;
                }

                LOAIMATHANG  cu = getLOAIMATHANGByID();
                DialogResult rs = MessageBox.Show("Bạn có chắc chắn xóa loại mặt hàng " + cu.TEN + "?",
                                                  "Thông báo",
                                                  MessageBoxButtons.OKCancel,
                                                  MessageBoxIcon.Warning);

                if (rs == DialogResult.Cancel)
                {
                    return;
                }

                try
                {
                    db.LOAIMATHANGs.Remove(cu);
                    db.SaveChanges();
                    MessageBox.Show("Xóa thông tin loại mặt hàng thành công",
                                    "Thông báo",
                                    MessageBoxButtons.OK,
                                    MessageBoxIcon.Information);
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Xóa thông tin loại mặt hàng thất bại\n" + ex.Message,
                                    "Thông báo",
                                    MessageBoxButtons.OK,
                                    MessageBoxIcon.Error);
                }
                LoadDgvLOAIMATHANG();

                return;
            }
            if (btnXoa.Text == "Hủy")
            {
                btnSua.Text  = "Sửa";
                btnThem.Text = "Thêm";
                btnXoa.Text  = "Xóa";

                LockControl();
                UpdateDetail();
                return;
            }
        }
Ejemplo n.º 4
0
        private bool CheckLuaChon()
        {
            LOAIMATHANG tg = getLOAIMATHANGByID();

            if (tg.ID == 0)
            {
                MessageBox.Show("Chưa có loại mặt hàng nào được chọn",
                                "Thông báo",
                                MessageBoxButtons.OK,
                                MessageBoxIcon.Error);
                return(false);
            }
            return(true);
        }
Ejemplo n.º 5
0
        private void UpdateDetail()
        {
            try
            {
                LOAIMATHANG tg = getLOAIMATHANGByID();

                if (tg.ID == 0)
                {
                    return;
                }

                txtTenLoaiMatHang.Text = tg.TEN;
            }
            catch
            {
            }
        }
Ejemplo n.º 6
0
 private LOAIMATHANG getLOAIMATHANGByID()
 {
     try
     {
         int         id  = (int)dgvLoaiMatHang.GetFocusedRowCellValue("ID");
         LOAIMATHANG ans = db.LOAIMATHANGs.Where(p => p.ID == id).FirstOrDefault();
         if (ans == null)
         {
             return(new LOAIMATHANG());
         }
         return(ans);
     }
     catch
     {
         return(new LOAIMATHANG());
     }
 }
Ejemplo n.º 7
0
        private void btnThem_Click(object sender, EventArgs e)
        {
            if (btnThem.Text == "Thêm")
            {
                btnSua.Enabled = false;
                btnThem.Text   = "Lưu";
                btnXoa.Text    = "Hủy";

                ClearControl();
                UnlockControl();


                return;
            }

            if (btnThem.Text == "Lưu")
            {
                if (Check())
                {
                    btnThem.Text = "Thêm";
                    btnXoa.Text  = "Xóa";
                    LockControl();

                    LOAIMATHANG moi = getLOAIMATHANGByForm();
                    db.LOAIMATHANGs.Add(moi);

                    try
                    {
                        db.SaveChanges();
                        MessageBox.Show("Thêm thông tin loại mặt hàng thành công",
                                        "Thông báo",
                                        MessageBoxButtons.OK,
                                        MessageBoxIcon.Information);
                    }
                    catch (Exception ex)
                    {
                        MessageBox.Show("Thêm thông tin loại mặt hàng thất bại\n" + ex.Message,
                                        "Thông báo",
                                        MessageBoxButtons.OK,
                                        MessageBoxIcon.Error);
                    }
                    LoadDgvLOAIMATHANG();
                }
                return;
            }
        }
Ejemplo n.º 8
0
 private void CapNhat(ref LOAIMATHANG cu, LOAIMATHANG moi)
 {
     cu.TEN = moi.TEN;
 }