File size: 1,280 Bytes
1519172
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Trade Network category KPI widget definitions."""

TRADE_NETWORK_WIDGETS: dict = {
    "wid_active_trade_relationships_001": {
        "title": "Active Trade Relationships",
        "category": "trade_network",
        "unit": "count",
        "description": "Active vs draft/suspended/expired trade relationships for the merchant",
        "drill_down_url": "/trade-network/relationships",
    },
    "wid_new_partners_added_001": {
        "title": "New Partners Added",
        "category": "trade_network",
        "unit": "count",
        "description": "New ncnf/cnf/distributor merchants onboarded in the period",
        "drill_down_url": "/trade-network/partners",
    },
    "wid_warehouse_throughput_001": {
        "title": "Warehouse Throughput",
        "category": "trade_network",
        "unit": "count/day",
        "description": "Average daily receipts (GRN) + dispatches (shipments) in the period",
        "drill_down_url": "/trade-network/warehouses",
    },
    "wid_partner_performance_001": {
        "title": "Partner Performance",
        "category": "trade_network",
        "unit": "%",
        "description": "Top 5 suppliers by fill rate (received qty ÷ ordered qty) in the period",
        "drill_down_url": "/trade-network/partners",
    },
}