Ejemplo n.º 1
0
        protected void btnThem_Click(object sender, EventArgs e)
        {
            int   id          = int.Parse(name);
            int   maloai      = int.Parse(drlLoaisp.SelectedValue);
            int   maphieunhap = new Dao_JustShop.CTphieunhapModel().search(int.Parse(name)).MaPhieuNhap;
            int   masp        = int.Parse(drSanPham.SelectedValue);
            int   soluong     = int.Parse(txtSoLuong.Text);
            float giatien     = float.Parse(txtGiaNhap.Text);

            if (txtGiaNhap.Text == "")
            {
                lbErr3.Text = "Giá nhập rỗng";
            }
            if (txtSoLuong.Text == "")
            {
                lbErr2.Text = "Số lượng rỗng";
            }
            if (txtSoLuong.Text != "" && txtGiaNhap.Text != "")
            {
                if (new Dao_JustShop.CTphieunhapModel().update(id, maphieunhap, maloai, masp, soluong, giatien))
                {
                    lbThanhcong.Text = "Sửa thành công";
                }
                else
                {
                    lbThatBai.Text = "Sửa thất bại";
                }
            }
        }
Ejemplo n.º 2
0
 void getdata()
 {
     Dao_JustShop.CTphieunhapModel ctphieunhap = new Dao_JustShop.CTphieunhapModel();
     txtSoLuong.Text         = ctphieunhap.search(int.Parse(name)).Soluong.ToString();
     txtGiaNhap.Text         = ctphieunhap.search(int.Parse(name)).GiaNhap.ToString();
     drlLoaisp.SelectedValue = ctphieunhap.search(int.Parse(name)).MaLoai.ToString();
     drSanPham.SelectedValue = ctphieunhap.search(int.Parse(name)).MaSp.ToString();
 }