Ejemplo n.º 1
0
        private void btnCart_Click(object sender, EventArgs e)
        {
            if (selectedTable == null)
            {
                Form_Alert.Alert("Lỗi: Chưa thêm bàn!", Form_Alert.enmType.Error);
                return;
            }
            if (orderedFood.Count == 0)
            {
                Form_Alert.Alert("Lỗi: Chưa thêm món!", Form_Alert.enmType.Error);
                return;
            }
            if (selectedCustomer == null)
            {
                Form_Alert.Alert("Lỗi: Chưa thêm khách hàng!", Form_Alert.enmType.Error);
                return;
            }
            GioHang gioHang = new GioHang(this, orderedFood, idOrderedFood, selectedTable, staffId, selectedCustomer.Makh);

            gioHang.ShowDialog();
            gioHang.Focus();
        }