Calling Order Verification Method From Shipment Creation Flow
What is the purpose of this article?
This article explains the workflow of risk score calculation from the Shipment creation workflow
What is the approach to achieving this task?
From /_ah/api/esb/v2/shipmentAdditionalInfoData we calling method addRiskScoreValue
addRiskScoreValue assigning risking based on following rule:
Query the database and get riskScore and risk score setting details using orderId with query given bellow
SELECT orders.riskScore, orders.riskScoreReasons, account_additional_config.isRiskScoreEnabled FROM orders LEFT JOIN channels ON channels.id = orders.channel_id LEFT JOIN accounts ON channels.account_id = accounts.id LEFT JOIN account_additional_config ON accounts.id = account_additional_config.account_id WHERE orders.id = 44176851;
based on above result check if
risk score is enabled and riskScore is not null assign riskScore to riskTag and return
risk score is disabled assign riskTag = null and return
risk Score is enabled and riskScore is Null Call order-verification API
Inside order-verification API, we again query database and If
risk score setting is enabled and riskScore is not null return riskScore and riskScoreReasons
risk score setting is enabled and riskScore is Null Calculate riskScore and Update the database with given query
UPDATE orders SET riskScore = : riskScore, riskScoreReasons = : riskScoreReasons WHERE orders.id = : id
risk score setting is not enabled simply return