Copy of Order Risk Scores
What is the purpose of this article?
This article contains all the logical steps to calculate the risk score for those orders which have risk associated with the chances of failing the order and also resolving these failures at the earliest.
Figma: Order Risk Score
What is the approach to achieving this task?
Given below is the workflow diagram for calculating the risk score of orders and the resolution taken to handle failure.
Sequence diagram.
What are the steps to achieve the above task?
WMS publish event on topic wms_notification
A push-based subscriber (projects/eshopbox-wms-staging/subscriptions/order_created_v1_riskscore) will listen the event and push the event on Endpoint (https://order-return-dot-eshopbox-portal-dev.appspot.com/_ah/api/esb/v1/risk/order-create-listener) Event details:
{ "resource": "order", "eventType": "POST", "eventSubType": "created", "accountSlug": "tab", "accountId": null, "actor": "SYSTEM", "version": "v1", "request_data": [], "response_data": { "id": 44176830, "externalChannelID": "CH5865", "channelLabel": "Bigbasket new", "integrationType": "4", "customerOrderNumber": "Series73", "vendorOrderNumber": "Series73", "shipMethod": "STD", "orderDate": "2023-03-29 08:07:13", "expectedShipDate": null, "dispatchAfterDate": null, "promiseDeliveryDate": null, "isCOD": "0", "paymentType": "prepaid", "orderSiteID": null, "taxAmount": 0, "shipChargeAmount": 25, "subtotal": 950, "orderTotal": 975, "balanceDue": 0, "thirdPartyShipping": false, "onHold": false, "created_at": "2023-03-29 13:37:15", "updated_at": "2023-03-29 13:37:15", "shippingAddress": { "customerName": "anup", "addressLine1": "Hsidc Maruti Indl Area", "addressLine2": null, "city": "south west delhi", "state": "DELHI", "postalCode": "110022", "countryCode": "IN", "countryName": "IN", "contactPhone": "9650000000", "email": "johndoe@test.com" }, "billingAddress": { "customerName": "anup", "addressLine1": "Hsidc Maruti Indl Area", "addressLine2": null, "city": "Delhi", "state": "Delhi", "postalCode": "110761", "countryCode": "IN", "countryName": "IN", "contactPhone": "9650000000", "email": "johndoe@test.com" }, "items": [ { "lineItemSequenceNumber": 1, "orderItemID": "Series73-23924311", "itemID": "ImportTest1", "sku": "T1U973FNPT3", "productName": "Multi color jersey tee", "quantity": 1, "customerPrice": 1000, "discount": 50, "lineItemTotal": 950, "taxRate": 0, "taxAmount": 0, "giftMessage": "Happy Birthday.", "giftLabelContent": "", "cancellationReason": "", "cancellationTime": "0000-00-00 00:00:00", "original_order_item_id": null } ], "expectedDeliveryDate": null }, "previous_data": [], "resource_type": "order.create", "account_slug": "tab", "custom": [] }
After listening to above event we will get account_slug based on account_slug we will query data base with the query given below:
SELECT isRiskScoreEnabled FROM accounts LEFT JOIN account_additional_config ON accounts.id = account_additional_config.account_id WHERE accounts.account_slug = 758
If the risk score enabled for given workspace, API /_ah/api/esb/v1/risk/order-create-listener will internally call API: /_ah/api/esb/v1/risk/order-verification with the request body given below:
{ "externalChannelID": "CH1299", "customerOrderNumber": "4571602911385", "externalShipmentId": "4571602911385-1299-0547", "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": "Chandigarh", "contactPhone": "9131786078", "customerName": "Anamika Dad", "email": "nomailprovided@gmail.com" }, "integrationType": "7", "items": [ { "itemID": "44372319699097", "sku": "24QGK3H1ZV5", "externalWarehouseID": "Gurgaon_FC", "quantity": 1, "outOfStock": "false" } ] }
After getting request body we will get Shipping details from the request body and based on these details we calculate risk score as follows
On the shipping address obtained above we will calculate the risk score, to calculate the risk score we need to verify if the address is valid or not , to verify the address we will check the Pincode, Email and Contacts respectively.
Address verification: The address will be considered invalid and risk score will be HIGH. If any of the given condition is false :-
Pincode should be not start with digit 0
Pincode should be 6 digit long
Pincode should exist in state
Address length can not be lower than 60 characters including city and state. Excluding pincode.
The address must include numeric values
The address must not contain keywords like : “Test”, “Dummy”, “Example”, etc.
Contact Details verification:- The contacts details will be consider invalid and risk Score will be considered HIGH If
Contact No. is not 10 digit.
Contact No. starts with country code ((after excluding last 10 digits) other than +91, 091, 91, 0)
Contact No. is of pattern 1234567890 or xxxxxxxxxx (x=1,2,3,4,etc.)
Customer name contains keywords like “test”,”dummy”,”example”,”123”,”Xyz”,”Abc”,etc.
Customer Email verification:- Email will be considered invalid and risk score will be considered MEDIUM If
Contact mail domain is incorrect. (gemail,yehoo,etc.)
Contact mail contains keywords like “test”,”dummy”,”example”,”123”,”Xyz”,”Abc”,etc.
Delhivery address verification API: Address Validation API, We will call Delhivery address verification API and based on its response we will assign risk score for the given order, the response body is given below, if the address-validity is:
{ "success": true, "status_code": 200, "message": "Request has been processed", "request_id": AX34687667877689, "result": { "address-validity": "Valid" } }
Valid, then risk score will be LOW
Ambiguous, then risk score will be HIGH
Junk, then risk score will be HIGH
Incomplete, then risk score will be HIGH
Check for RTO score by fetching data from pincode_rto_sore table from the below query
SELECT (total_rto/total_packed_shipmnet)*100 FROM pincode_rto_score WHERE drop_pincode ='110005'
If the rto percentage is
0% then risk score will be LOW
Between 0-20% risk score will be MEDIUM
above 20% then risk score will be HIGH
After verifying the address in next step we will check for Duplicate/Multiple orders placed by the same customers, we will assign that order risk score MEDIUM if:
it is placed on the same day, with same product and same customer (same name or phone or email) and same channel
After done with calculating risk score and its reasons we will save these details into database with the query given below
UPDATE orders SET riskScore = : riskScore, riskScoreReasons = : riskScoreReasons WHERE orders.id = : id
Following changes to be done in orderReturnAlgoliaModel
If order is ONHOLD :
For need attention, we will set riskScore, risk score reasons and onHoldReasons key into shipmentDetails in orderReturnAlgoliaModel
In other cases we will set risk score details in root level in orderReturnAlgoliaModel
Save the details set in orderReturnAlgoliaModel in Algolia
Code For Sequence Diagram.