From ba12d2ed1fb0b8a0959979e7f8de1e7a0251e2a3 Mon Sep 17 00:00:00 2001 From: Srinath Date: Wed, 28 Jan 2026 17:34:46 +0530 Subject: [PATCH] Added new multiple seach icon in sales page --- .../BookingScreen/BookingData/BookingData.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/Features/BookingScreen/BookingData/BookingData.js b/src/Features/BookingScreen/BookingData/BookingData.js index 9f7d995..e3f29b2 100644 --- a/src/Features/BookingScreen/BookingData/BookingData.js +++ b/src/Features/BookingScreen/BookingData/BookingData.js @@ -1460,6 +1460,23 @@ export const CustomerOrderList = createAsyncThunk( } ); +// post /ProductSearch +export const PostProductSearch = createAsyncThunk( + 'multipleSearch/ProductSearch', + async (postData) => { + return await axiosRetailInstanceData.post(`/ProductSearch`, postData); + } +); +// get /GetProductSearch +export const getmultipleSearch = createAsyncThunk( + 'multipleSearch/GetProductSearch', + async (data) => { + return await axiosRetailInstanceData.get( + `/GetProductSearch?compId=${data?.CompId}&branchId=${data?.BranchId}&appId=${data?.AppId}` + ); + } +); + const initialState = {