
# Used when no specific ReorderPolicy record exists for a product/location combination
DEFAULT_REORDER_POLICY = {
    # Days from order placement to delivery (lead time)
    "LEAD_TIME_DAYS": 7,
    # Days between inventory reviews (review period)
    "REVIEW_PERIOD_DAYS": 7,
    # Target service level (fill rate) - 95% is industry standard
    # This means 95% of demand should be fulfilled from stock
    "SERVICE_LEVEL_TARGET": 0.95,
    # Minimum order quantity constraint
    "MIN_ORDER_QTY": 1.0,
}
