/
Calling Order Verification Method From Shipment Creation Flow

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?

  1. From /_ah/api/esb/v2/shipmentAdditionalInfoData we calling method addRiskScoreValue

  2. addRiskScoreValue assigning risking based on following rule:

    1. 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;
    2. based on above result check if

      1. risk score is enabled and riskScore is not null assign riskScore to riskTag and return

      2. risk score is disabled assign riskTag = null and return

      3. risk Score is enabled and riskScore is Null Call order-verification API

  3. Inside order-verification API, we again query database and If

    1. risk score setting is enabled and riskScore is not null return riskScore and riskScoreReasons

    2. 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
    3. risk score setting is not enabled simply return

 

Add label