From f78d302f1c1910d0a2af908983763443863125c8 Mon Sep 17 00:00:00 2001 From: Srinath Date: Fri, 20 Feb 2026 15:31:45 +0530 Subject: [PATCH] Added Qr scann on mobile Funtionalites --- .../BSNavbar/verfiedProduct/VerfiedProducts.jsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/Pages/BookingScreen/Components/BSNavbar/verfiedProduct/VerfiedProducts.jsx b/src/Pages/BookingScreen/Components/BSNavbar/verfiedProduct/VerfiedProducts.jsx index 0969a2a..6b5a781 100644 --- a/src/Pages/BookingScreen/Components/BSNavbar/verfiedProduct/VerfiedProducts.jsx +++ b/src/Pages/BookingScreen/Components/BSNavbar/verfiedProduct/VerfiedProducts.jsx @@ -19,6 +19,8 @@ import './Verfiedproduct.scss'; import { useSelector } from 'react-redux'; import { ApplicationPreferences } from '../../../../../Features/BrachLogin/BranchLogin.js'; import { changeOfferAppliedProductsForMembership } from '../../../../../Features/Offer/Offernew/BookingOffernew.js'; +import BarCodeScan from '../../../../../Services/BarCodeScan.jsx'; +import { isMobile } from 'react-device-detect'; const VerfiedProducts = ({ drawerOpen = false, setDrawerOpen = () => {} }) => { @@ -303,10 +305,16 @@ const VerfiedProducts = ({ drawerOpen = false, setDrawerOpen = () => {} }) => { > Clear - - + ) + : ( { + setScanValue(value); + fetchProductsByOrderId(value); + }} + />)} {message &&
{message}
}