diff --git a/src/Pages/BookingScreen/Template/BSLayout7/BSCombo1.jsx b/src/Pages/BookingScreen/Template/BSLayout7/BSCombo1.jsx index 515d3b9..81ff00b 100644 --- a/src/Pages/BookingScreen/Template/BSLayout7/BSCombo1.jsx +++ b/src/Pages/BookingScreen/Template/BSLayout7/BSCombo1.jsx @@ -67,6 +67,9 @@ import BSExpireProductsList from '../../Components/UtillComponents/BSExpireProdu import ComboSalesBillTable from '../../Components/BSBillingTables/ComboSalesBillTable/ComboSalesBillTable.jsx'; import { GiBasket } from 'react-icons/gi'; import { FaRegKeyboard } from 'react-icons/fa'; +import { CgSearchLoading } from "react-icons/cg"; + import { DefaultModal } from '../../../../Components/Modal/DefaultModal.jsx'; +import MultipleSearch from '../../Components/UtillComponents/MultipleSearch.jsx'; const subDirectory = import.meta.env.BASE_URL; const commonDirectory = import.meta.env.COMMON_BASE_URL; @@ -106,6 +109,7 @@ export default function BSCombo1() { const [count, setcount] = useState(0); const [messageType, setMessageType] = useState(null); const [messageData, setMessageData] = useState(null); + const [multiple, setMultiple] = useState(false); const BookingBilling = BSComboData?.BookingBilling?.[0]; const DineInAccess = SettingDataSelector?.[0]?.SettingDtlDetails.filter( (i) => i.SettingIdName === 'DineIn' @@ -351,6 +355,13 @@ export default function BSCombo1() {
+ {/* Multiple search */} + +
+ setMultiple(true)} /> +
+
+ {Comboglobal === false && ( )} + setMultiple(false)} + destroyOnClose={true} + children={ + <> + + + } + /> ); }