Return Create Flow
Steps:
Create an ReturnCronJob to prepare Data for active steps of orders and push into queue.
Tables included :- app_steps, app_installation_step_config,app_install_connection,channels,.
extract connection id with connection data(ie_app_automation_steps_config,ie_appinstall_connection)
Query:
SELECT ie_app_automation_steps_config.connectionId,ie_app_automation_steps_config.latestSyncTimeStamp,ie_appinstall_connection.accessToken
FROM ie_app_automation_steps_config
LEFT JOIN ie_appinstall_connection
ON ie_app_automation_steps_config.connectionId=ie_appinstall_connection.id
WHERE ie_app_automation_steps_config.appAutomationStepId='5' AND ie_app_automation_steps_config.isActive='1' AND ie_app_automation_steps_config.latestSyncTimeStamp IS NOT NULL AND ie_appinstall_connection.accessToken IS NOT NULL;
extract unique connection id and map external channnel id against each connection id
tables: external_wms_channels,warehouses)
loop over the Result set of above Query and pass connection Id to a method if the connectionId exist in cache fetch data in the given format
{
"externalChannelId" : "CLARKS",
"connectionId": "48",
"location":
{
"4253453464575":"Warehouse",
"67859":"BDGUR103"
}
}
else execute query and set in cache and return in same format.
channeldata_(connectionId);
Query:
SELECT channels.externalChannelId ,channels.connectionId,external_wms_channels.locationId,
warehouses.externalWarehouseId FROM channels
LEFT JOIN external_wms_channels
ON channels.id= external_wms_channels.channel_id
LEFT JOIN warehouses
ON warehouses.id = external_wms_channels.warehouse_id
WHERE channels.connectionId =48;
group records according to sales channel and then then map location id , external warehouse id
Associate above results into an object and pass into taskQueue in given format.
{ "externalChannelId" : "CLARKS", "connectionId": "48", "location": { "4253453464575":"Warehouse", "67859":"BDGUR103" }, "accessToken":"wertghjkhgfdsasdfghjkiuytr", "latestSyncTimeStamp":"2020-11-03 17:05:32" }
2. a. Create a Listener API to listen data in taskQueue and prepare request Data for flipkart API
update value of latestSyncTime with currentDate.
. Push detail data of flipkart to pubsub for transformation and call flipkart API
https://api.flipkart.net/sellers/v2/returns?source=customer_return&createdAfter=2020-11-30&locationId=LOC62a30c1d159845e09dfeef303f52cfb9
https://api.flipkart.net/sellers/v2/returns?source=courier_return&createdAfter=2020-11-30&locationId=LOC62a30c1d159845e09dfeef303f52cfb9
If order detail has (hasnext: true) ,push the nextpage Url to call the flipkat API with
previous request body and nextPage Url in params
Push detail data of flipkart to transformation and vise versa
4. a. Create Listener API’s to listen these topics and create data from them if detail
has (hasnext: true) ,push the nextpage Url to call the flipkart API with previous request
body and nextPage Url in params vise versa.
5. call wms API
http://wms.eshopbox.com/api/return; http://wms.eshopbox.com/api/return-status-update
Mapping (customer return):
EshopBox keys | Flipkart Keys +Wms database | |
---|---|---|
1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
| null |
10 |
|
|
11 |
|
|
12 |
| 1 |
13 |
|
|
14 |
| ““ |
15 |
| ““ |
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
Mapping (courier return):
EshopBox keys | Flipkart Keys |
---|---|
| ““ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|