Added new multiple seach icon in sales page

This commit is contained in:
Srinath 2026-01-28 17:34:46 +05:30
parent 319f2a37ed
commit ba12d2ed1f
1 changed files with 17 additions and 0 deletions

View File

@ -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 = {