Beispiel #1
0
 private void LoadData(string swhere)
 {
     try
     {
         DonViTinhClient client = new DonViTinhClient();
         BindingSource   bds    = new BindingSource();
         bds.DataSource = client.DonViTinh_Search(swhere);
         dgv_DanhMucDVTinh.DataSource = bds.DataSource;
         FormatGrid();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #2
0
 private void LoadDonViTinh()
 {
     try
     {
         DonViTinhClient client = new DonViTinhClient();
         BindingSource   bds    = new BindingSource();
         bds.DataSource              = client.DonViTinh_GetData();
         cbo_DonViTinh.DataSource    = bds.DataSource;
         cbo_DonViTinh.ValueMember   = "MaDonViTinh";
         cbo_DonViTinh.DisplayMember = "TenDonViTinh";
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Beispiel #3
0
 private void btn_CapNhat_Click(object sender, EventArgs e)
 {
     try
     {
         if (!Checknull())
         {
             DonViTinhClient client = new DonViTinhClient();
             DonViTinh       dvt    = new DonViTinh();
             dvt.MaDonViTinh  = Convert.ToInt32(txt_MaDonViTinh.Text);
             dvt.TenDonViTinh = txt_TenDonViTinh.Text;
             //Cập nhật thông tin
             if (!string.IsNullOrEmpty(ProductUnitID))
             {
                 if (client.DonViTinh_Update(dvt))
                 {
                     MessageBox.Show("Cập nhật đơn vị tính thành công");
                     LoadData("");
                 }
                 else
                 {
                     MessageBox.Show("Cập nhật đơn vị tính thất bại");
                 }
             }
             else
             {
                 if (client.DonViTinh_Insert(dvt))
                 {
                     MessageBox.Show("Thêm đơn vị tính thành công");
                     LoadData("");
                 }
                 else
                 {
                     MessageBox.Show("Thêm đơn vị tính thất bại");
                 }
             }
             txt_MaDonViTinh.ReadOnly  = true;
             txt_TenDonViTinh.ReadOnly = true;
             btn_CapNhat.Visible       = false;
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }
Beispiel #4
0
 //Nút xoá
 private void pic_Xoa_Click(object sender, EventArgs e)
 {
     try
     {
         DonViTinhClient client = new DonViTinhClient();
         if (!string.IsNullOrEmpty(txt_MaDonViTinh.Text))
         {
             if (client.DonViTinh_Delete(Convert.ToInt32(txt_MaDonViTinh.Text)))
             {
                 MessageBox.Show("Xoá đơn vị tính thành công");
                 LoadData("");
             }
             else
             {
                 MessageBox.Show("Xoá đơn vị tính thất bại");
             }
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }