Added new multiple seach icon in sales page
This commit is contained in:
parent
319f2a37ed
commit
ba12d2ed1f
|
|
@ -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 = {
|
const initialState = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue