Warehouse Inventory Transfer with Supply Chain Constraints
Supply chain teams need to move inventory between locations while respecting safety stock levels and demand forecasts.
El problema
AI-recommended inventory transfers are validated before execution. Corules checks that the source location retains sufficient safety stock, the destination has demand forecasts supporting the transfer, and shipping costs are economically justified. Transfers that would cause stockouts are blocked. Borderline transfers escalate to supply chain planners.
Cómo lo resuelve Corules
BLOCK: source_qty_after_transfer 120 below safety_stock['warehouse-east']['SKU-7742'] = 200. Transfer blocked.
Ejemplo de política
// Inventory transfer policy (CEL)
context.source_qty_after_transfer >= params.safety_stock[context.source_location][context.sku]
&& context.destination_demand_forecast_30d >= context.transfer_qty * 0.8
&& context.transfer_unit_cost <= params.max_transfer_cost_per_unit[context.sku]Opciones de integración
REST API
Frequently Asked Questions
Can safety stock levels change seasonally?
Yes. Safety stock parameters are tenant-specific and can be updated without redeploying policy logic. Seasonal adjustments update params; policy CEL remains unchanged.