From cd6f0df9be36081fc70c225184f70efecb18addb Mon Sep 17 00:00:00 2001 From: karthikalakshmi Date: Wed, 4 Feb 2026 10:19:51 +0530 Subject: [PATCH] FIX #71 Issue Solving feb 3 --- .../BSBillingTables/BSBillingTable2/BSBillingTable2.jsx | 1 + .../BSBillingTables/BSBillingTable5/BSBillingTable5.jsx | 1 + .../Components/PrintMainPage/PrinterSelection.jsx | 7 +++++++ 3 files changed, 9 insertions(+) diff --git a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable2/BSBillingTable2.jsx b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable2/BSBillingTable2.jsx index 3c8e9c0..6b576b3 100644 --- a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable2/BSBillingTable2.jsx +++ b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable2/BSBillingTable2.jsx @@ -213,6 +213,7 @@ import pozologoimg from '../../../../../Images/pozologoimg.png'; import PaymentGatewayEmbedded from '../../UtillComponents/PaymentGatewayEmbedded.jsx'; import MobileMultiPdfPrintTrigger from '../../UtillComponents/MobileMultiPdfPrintTrigger.jsx'; import { useDateStore } from '../../../../../Features/BookingScreen/BookingData/DateStore.js'; +import CustomerOrders from '../../BookingFunctionality/CustomerOrders.jsx'; const subDirectory = import.meta.env.ENV_BASE_URL; const MainHomeUrl = import.meta.env.ENV_MAIN_BASE_URL; diff --git a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable5/BSBillingTable5.jsx b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable5/BSBillingTable5.jsx index afa9d03..5c7e9eb 100644 --- a/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable5/BSBillingTable5.jsx +++ b/src/Pages/BookingScreen/Components/BSBillingTables/BSBillingTable5/BSBillingTable5.jsx @@ -211,6 +211,7 @@ import UpiPopover from '../StandardTable/Utils/UpiPopOver.jsx'; import PaymentGatewayEmbedded from '../../UtillComponents/PaymentGatewayEmbedded.jsx'; import MobileMultiPdfPrintTrigger from '../../UtillComponents/MobileMultiPdfPrintTrigger.jsx'; import { useDateStore } from '../../../../../Features/BookingScreen/BookingData/DateStore.js'; +import CustomerOrders from '../../BookingFunctionality/CustomerOrders.jsx'; const subDirectory = import.meta.env.ENV_BASE_URL; const MainHomeUrl = import.meta.env.ENV_MAIN_BASE_URL; diff --git a/src/Pages/BookingScreen/Components/PrintMainPage/PrinterSelection.jsx b/src/Pages/BookingScreen/Components/PrintMainPage/PrinterSelection.jsx index 32729ce..9146c44 100644 --- a/src/Pages/BookingScreen/Components/PrintMainPage/PrinterSelection.jsx +++ b/src/Pages/BookingScreen/Components/PrintMainPage/PrinterSelection.jsx @@ -12,6 +12,7 @@ import { DropDowns } from "../../../../Components/Forms/DropDown"; import { Switch } from "antd"; import { useSelector } from "react-redux"; import KioskPrinterSelection from "./KioskPrinterSelection"; +import { GlobalFeatAddOnData } from "../../../../Features/BookingScreen/BookingData/BookingData"; const PrinterSelection = (props) => { const CompId = getSession("CompId"); @@ -28,6 +29,7 @@ const PrinterSelection = (props) => { const [activePrinterId, setActivePrinterId] = useState(null); const [initialPrinters, setInitialPrinters] = useState([]); const PrinterDetails = useSelector(GlobalPrinterMappingDtls); + const FeatureAddonData = useSelector(GlobalFeatAddOnData); const [MyPrinter, setMyPrinter] = useState(true); const [MyKioskPrinter, setMyKioskPrinter] = useState(false); const { onClose } = props; @@ -314,6 +316,10 @@ const PrinterSelection = (props) => { {/* */} My Printer + {FeatureAddonData?.FeatureDtls?.find( + (item) => + item?.FeatureAddonName?.toLowerCase() === 'kiosk sales' + ) &&
{ {/* */} Kiosk Printer
+ }