public FrmPhieuThanhToan() { InitializeComponent(); this._bus_BanHang = new BUS_BanHang(); this._bus_ThanhToan = new BUS_ThanhToan(); // Load danh sách nhân viên this._dsMaVaTenNv = this._bus_BanHang.LayDsMaVaTenNv(); foreach (DataRow row in this._dsMaVaTenNv.Rows) { this.cbTenNhanVien.Properties.Items.Add(row["TenNV"]); } // Load các hóa đơn chưa thanh toán xong this._dsHdChuaTtXong = this._bus_ThanhToan.LayDshdChuaTtXong(); foreach (DataRow row in this._dsHdChuaTtXong.Rows) { this.cbMaHoaDon.Properties.Items.Add(row["MaHD"]); } this.dateNgayNop.Text = DateTime.Now.ToShortDateString(); // Load tất cả các phiếu thanh toán lên datagridview int i = 1; this._dsPttHienTai = this._bus_ThanhToan.LayTatCaPtt(); foreach (DataRow row in this._dsPttHienTai.Rows) { dgvPhieuThanhToan.Rows.Add(i, row["MaPhieuTT"], row["SoTienNop"], row["ThoiGianNop"], row["MaHD"], row["MaNV"]); i++; } }
public FrmHoaDonBanHang() { InitializeComponent(); this._bus_BanHang = new BUS_BanHang(); // Load danh sách nhân viên this._dsMaVaTenNv = this._bus_BanHang.LayDsMaVaTenNv(); foreach (DataRow row in this._dsMaVaTenNv.Rows) { this.cbTenNvbh.Properties.Items.Add(row["TenNV"]); } // Load danh sách khách hàng this._dsMaVaTenKh = this._bus_BanHang.LayDsMaVaTenKh(); foreach (DataRow row in this._dsMaVaTenKh.Rows) { this.cbTenKhachHang.Properties.Items.Add(row["HoTen"]); } // Load danh sách mặt hàng đang bán this._dsMaVaTenMatHang = this._bus_BanHang.LayDsHangTonHienTai(); foreach (DataRow row in this._dsMaVaTenMatHang.Rows) { this.cbTenMatHang.Properties.Items.Add(row["TenMH"]); } this.dateNgayLap.Text = DateTime.Now.ToShortDateString(); // Load tất cả các hóa đơn bán hàng int i = 1; this._dsHdbh = this._bus_BanHang.LayTatCaHdbh(); foreach (DataRow row in this._dsHdbh.Rows) { this.dgvDsHdbh.Rows.Add(i, row["MaHD"], row["MaNV"], row["MaKH"], row["ThoiGianLap"], row["TongTien"]); i++; } }