Inventory Allocation Rule (PHP-JAVA)
Inventory Allocation Rule API (request + url to be added)
Response of API to be added .
Sequence diagram
Database + Tables + Queries to be used in Inventory Allocation Rule
Resources used such as GCP project, service, Clickpost API etc.
API to consist of :-
Inventory Allocation rule
pincode serviceable rule
RTS TAT for integration type 4, 7
State | Preference |
---|---|
kolkata | K, B, M, G |
Gujarat | G, M, B, K |
Tamil Nadu | B, M, K, G |
J & K | G, K, M, B |
Item 1 (40 Qty) - M, K, G
Item 2 (5 Qty) - G
Item 3 (15 Qty) - G
What is the purpose of this article?
The purpose of this article is to inform Warehouse Management System (WMS) that in which warehouses the products are out of Stock. This will keep our clients updated about out of Stock orders ( unfulfillable orders ). And they can send inventory for only those items which are unfulfillable.
In this article, we will thoroughly discuss how we can inform our warehouse if the inventory is not available in the warehouse and on which basis and its infrastructure diagram.
What is the approach to achieve this task ?
We are taking the below approach to achieve this task.
WMS will provide us a request body mentioning the externalChannelID, shippingAddress, Items and their quantity.
For those items, we need to inform them from which warehouse we have picked up their inventory (Inventory will be picked up on a priority basis if available in more than 1 warehouse). This is termed as Inventory Allocation Rule.
Using this information, WMS will create shipments for those order items or mark them as unfulfillable on workspace through which the client will come above the status of the product and can send more products in warehouse if needed.
Sequence diagram for the approach taken for Inventory Allocation Rule
What are the technical steps to achieve the above task ?
After order is created in WMS, a request body is prepared and sent
to POST Api api/v2/inventoryAllocation in ESB-CLIENT-ORDER-RETURN project.
API Request Body Structures Below(to be sent by WMS):
{ "externalChannelID": "CH1299", "customerOrderNumber": "4571602911385", "shippingAddress": { "city": "Churcha colliery", "countryCode": "IN", "postalCode": "497339", "addressLine1": "Shreya poultry farm, Ward number 06", "addressLine2": "East nepal gate, Near balaji beauty parlour", "countryName": "INDIA", "state": "Chhattisgarh", "contactPhone": "9131786078", "customerName": "Anamika Dad", "email": "nomailprovided@gmail.com" }, "integrationType": "7", "items": [ { "itemID": "44372319699097", "quantity": 1 } ] }
Now verify if the request body is correct and if found correct then pass it in the taskqueue to run inventory allocation rule and create shipment.
Checks for verifying request body - request body must contain externalChannelId, state and itemIdList
To be changed later taskqueue name - shipment-additional-details-queue path- /_ah/api/esb/v2/shipmentAdditionalInfoData
2.Now in the taskqueue listener Api, Based on externalChannelID
and state
sent in request body, find the channel ids and zone priority respectively.
SELECT * FROM channels WHERE externalChannelId = 'CH1299
';
SELECT zone, zonePriority FROM state_zone_mapping WHERE state = 'Chandigarh';
3. Fetch all the active warehouses in zonepriority basis along with their externalWarehouseID and facility.type
SELECT
external_wms_channels.warehouse_id, warehouses.externalWarehouseID, external_wms_channels.externalWmsChannelName, facility.type
FROM external_wms_channels
LEFT JOIN channel_account_mapping ON channel_account_mapping.external_wms_channel_id = external_wms_channels.id
LEFT JOIN warehouses ON warehouses.id = external_wms_channels.warehouse_id
LEFT JOIN facility ON facility.id = warehouses.facility_id
WHERE external_wms_channels.channel_id = '1918'
AND channel_account_mapping.enrollmentStatus = 'ACTIVE'
ORDER BY FIELD (warehouses.zone,'North','South','West','East');
4. Store the prioritywise found warehouseIDS in an array.
5. Now check if the item is of virtual kit or non virtual kit. Write a query as follows.
SELECT id, itemID, sku, isVirtualKit FROM listings WHERE channel_id = "1299" AND itemID IN ('44372319699097');
6. If itemID are having isVirtualKit = 1, then for those items, Based on itemID, warehouse_id and channel id found from the above queries, write a query to fetch the number of inventories present in warehouseId. Write query from inventories table, pass all warehouse ids irrespective of facilityType.
SELECT
listings.itemID, inventories.warehouse_id,
inventories.inventory, listings.itemID, inventories.warehouse_id
FROM inventories
LEFT JOIN listings ON listings.id = inventories.listing_id
WHERE listings.channel_id = '1918' AND listings.itemID IN ( 'item 2', 'item 4')
AND inventories.warehouse_id IN (650, 647, 648) AND inventories.inventory !='0'
ORDER BY inventories.inventory DESC;
7. If itemID are having isVirtualKit = 0,
if facilityType is auperator then for those items, Based on skus and externalWarehouseID found from the above queries, fetch the number of good inventories present there.
SELECT * FROM warehouse_inventories WHERE sku IN ( 'item 1 sku', 'item 3 sku', 'item 5 sku') AND warehouse IN ( 'gurgaon FC, Mumnai FC');
if if facilityType is not auperator , then for those items, Based on itemID, warehouse_id and channel id and non auperator itemIDs found from the above queries, write a query to fetch the number of inventories present in warehouseId . write query from inventories table, pass only those warehouse ids which are of non auperator type.
SELECT
listings.itemID, inventories.warehouse_id,
inventories.inventory, listings.itemID, inventories.warehouse_id
FROM inventories
LEFT JOIN listings ON listings.id = inventories.listing_id
WHERE listings.channel_id = '1918' AND listings.itemID IN ( 'item 1', 'item 3', 'item 5')
AND inventories.warehouse_id IN (647) AND inventories.inventory !='0'
ORDER BY inventories.inventory DESC;
8. Combine all the data in one map.
9. Based on warehouse priority which was set in array, keep iterating and check their inventory and set the details accordingly.
if “inventories.inventory = 0“ OR “warehouse_inventories.good_inventory = 0" or then then set outOfStock = true
else if "warehouse_inventories.good_inventory != 0" OR “inventories.inventory != 0“, then check :-
if inventoy >= requested item quantity
if true , set outOfStock = false
prepare response body
if false,
Check how many inventories can be found, for inventories available set outOfStock = false else set set outOfStock = true
EXAMPLES
request body :- "items": [ { "itemID": "44372319699097", "quantity": 1 } ] response body : "items": [ { "itemID": 44372319699097, "externalWarehouseID": "Eshopbox_Mumbai", "quantity": 1, "outOfStock": "false" } ]
request body :-
"items": [
{
"itemID": "44372319699097",
"quantity": 4
}
]
response body :
"items": [
{
"itemID": 44372319699097,
"externalWarehouseID": "Eshopbox_Mumbai",
"quantity": 2,
"outOfStock": "false"
}
{
"itemID": 44372319699097,
"externalWarehouseID": "Gurgaon_FC",
"quantity": 1,
"outOfStock": "false"
},
{
"itemID": 44372319699097,
"externalWarehouseID": "",
"quantity": 1,
"outOfStock": "true"
}
]
request body :-
"items": [
{
"itemID": "44372319699097",
"quantity": 1
},
{
"itemID": "44372319699097",
"quantity": 1
}
]
response body :
"items": [
{
"itemID": 44372319699097,
"externalWarehouseID": "Eshopbox_Mumbai",
"quantity": 2,
"outOfStock": "false"
}
]
10. Check for pincode serviceability by calling the pincode serviceability API from POE Backend Service.
if pincode = serviceable, then set
"isServiceable" : "true",
if pincode = not serviceable, then set
"isServiceable" : "false",
11. Now prepare a response body as shown below :-
Note - if inventory is not available in any warehouse then shipment is to be created as sidelined.
API Response Body for POST: api/v2/inventoryAllocation (to be sent back to WMS)
{
"externalChannelID": "CH1299",
"isServiceable" : "true/false",
"shippingAddress": {
"city": "Churcha colliery",
"countryCode": "IN",
"postalCode": "497339",
"addressLine1": "Shreya poultry farm, Ward number 06",
"addressLine2": "East nepal gate, Near balaji beauty parlour",
"countryName": "INDIA",
"state": "Chhattisgarh",
"contactPhone": "9131786078",
"customerName": "Anamika Dad",
"email": "nomailprovided@gmail.com"
},
"items": [
{
"itemID": 44372319699097,
"externalWarehouseID": "Eshopbox_Mumbai",
"quantity": 1,
"outOfStock": "true/false"
}
]
}
TEST CASES TO CHECK INVENTORIES
cases | order type | type of product | type of warehouse where inventory is available | table where inventory will be checked |
|
|
|
|
|
case 1 | import | order A - non VK | auperator type warehouses | warehouse_inventories |
|
|
|
|
|
case 2 | import | order A - non VK | non auperator type warehouses | listings and inventories |
|
|
|
|
|
case 3 | import | order A - VK | non auperator type warehouses | shipment will not be created |
|
|
|
|
|
case 4 | import | order A - VK | auperator type warehouses | warehouse_inventories |
|
|
|
|
|
case 5 | import | order A - VK | auperator type warehouses, non auperator type warehouses | for auperator type warehouse ids - warehouse_inventories |
|
|
|
| for non-auperator type warehouse ids -shipment will not get created |
|
|
|
|
|
case 6 | import | order A - non VK | auperator type warehouses, non auperator type warehouses | for auperator type warehouse ids - warehouse_inventories |
|
|
|
| for non-auperator type warehouse ids -listings and inventories |
|
|
|
|
|
|
|
|
|
|
case 7 | not import | order A - non VK | auperator type warehouses | warehouse_inventories |
|
|
|
|
|
case 8 | not import | order A - non VK | non auperator type warehouses | listings and inventories |
|
|
|
|
|
case 9 | not import | order A - VK | non auperator type warehouses | listings and inventories |
|
|
|
|
|
case 10 | not import | order A - VK | auperator type warehouses | warehouse_inventories |
|
|
|
|
|
case 11 | not import | order A - VK | auperator type warehouses, non auperator type warehouses | for auperator type warehouse ids - warehouse_inventories |
|
|
|
| for non-auperator type warehouse ids -listings and inventories |
|
|
|
|
|
case 12 | not import | order A - non VK | auperator type warehouses, non auperator type warehouses | for auperator type warehouse ids - warehouse_inventories |
|
|
|
| for non-auperator type warehouse ids -listings and inventories |
Code for Sequence Diagram ?