/
RETURN/REFUND FLOW V2

RETURN/REFUND FLOW V2

  1.  POST return order with single item.
  2. check weather requested item exist in requested order.
  3. if isReplacemnet =0;  
  4. prepare data to save inside the return_shipment table and update order_items with created return_shipment_id.
  5. prepare data to push on a pubsub topic to assign courier.(PHP service)
  6. return response.
  7. from step 5. when courier is assigned. A event is generated with name : return_created.
  8. On return_created event,i will trigger the POST api of (JAVA to calculate refund).
  9. DATA received at api.
  10. check isRepacement = 0;
  11. calculate refund amount and save in return_shipment table. 
  12. PUSH data on Topic .
  13. subscribe data on refundOrder api.
  14. save data in refunds table and in refund_logs table with refund_created event.

Related content