Added model Close Funtionalies
This commit is contained in:
parent
8c80629ca4
commit
8025b74ca1
|
|
@ -1416,6 +1416,13 @@ export const getOtherServiceTicket = createAsyncThunk(
|
|||
}
|
||||
}
|
||||
);
|
||||
// post /cancelPayment
|
||||
export const PostCancelPayment = createAsyncThunk(
|
||||
'BookingData/cancelPayment',
|
||||
async (postData) => {
|
||||
return await axiosRetailInstanceData.post(`/cancelPayment`, postData);
|
||||
}
|
||||
);
|
||||
export const PostBlockSlots = createAsyncThunk(
|
||||
'BookingData/PostBlockSlots',
|
||||
async (postData) => {
|
||||
|
|
@ -1444,6 +1451,7 @@ export const getPaymentStatusForBusinessUPI = createAsyncThunk(
|
|||
}
|
||||
);
|
||||
|
||||
|
||||
export const getCurrentOrderid = createAsyncThunk(
|
||||
'BookingData/getcurrentorderid',
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue