private void btn_InBill_Click(object sender, EventArgs e)
        {
            if (this.listView_CacMonDaGoi.Items.Count == 0)
            {
                MessageBox.Show("Không có món nào để in", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }


            frm_InBill f = new frm_InBill();

            f.LoadList(IDOrderDangChon);
            f.LoadThongTin(this.txt_NhanVienOrder.Text, this.lblSoBan.Text, this.txt_ThanhTien.Text, this.txt_ThueVAT.Text, this.txt_PhiDichVu.Text, this.txt_GiamGia.Text, this.txt_TongTien.Text, false);
            f.ShowDialog();
        }
        private void btn_ThanhToan_Click(object sender, EventArgs e)
        {
            DialogResult ret1 = MessageBox.Show("Bạn muốn thanh toán  bàn này ?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (ret1 == DialogResult.Yes)
            {
                if (float.Parse(txt_TongTien.Text) == 0)
                {
                    MessageBox.Show("Không có gì để thanh toán cả", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }

                if (this.listView_CacMonDaGoi.Items.Count == 0)
                {
                    MessageBox.Show("Không có món nào để in", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return;
                }


                frm_InBill f = new frm_InBill();
                f.LoadList(IDOrderDangChon);
                f.LoadThongTin(this.txt_NhanVienOrder.Text, this.lblSoBan.Text, this.txt_ThanhTien.Text, this.txt_ThueVAT.Text, this.txt_PhiDichVu.Text, this.txt_GiamGia.Text, this.txt_TongTien.Text, true);
                f.ShowDialog();
                try
                {
                    objTable.Delete(IDBanDangChon);
                    LoadDSBan();



                    this.listView_CacMonDaGoi.Items.Clear();
                    this.listView_Products.Items.Clear();
                    this.lblSoBan.Text        = "0";
                    this.groupBox_HoaDon.Text = "Thông tin hóa đơn";
                    this.txt_ViTriBan.Text    = "";
                }
                catch (Exception ex)
                {
                    MessageBox.Show("Lỗi đã sảy ra , vui lòng kiểm tra lại hoặc liên hệ kỹ thuật viên với mô tả lỗi dưới đây \n " + ex.Message, "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }