Inventory Policy Reorder Point Reorder Quantity
An (r, Q) inventory policy: orders reorderQty units when the inventory position falls to reorderPoint or below.
When the position drops well below the reorder point so a single reorderQty won't bring it above reorderPoint, the policy orders n × reorderQty where n = ceil((reorderPoint − position) / reorderQty). If separateBatchOrders is true the n batches are ordered as n separate requests; otherwise they go in one consolidated order.
See sc.inventorylayer.InventoryPolicyReorderPointReorderQuantity
Constructors
Properties
The R = (delta − Q) parameterization used by optimization controls — sets the reorder point so that R + Q = delta.
The reorder quantity Q (≥ 1).
If true, when a deep drop requires multiple batches to clear the reorder point, place n separate replenishment requests of size reorderQty (rather than one consolidated n × reorderQty order).
Functions
Decide whether to place a replenishment order now.
Snapshot the current parameter values.
parameters[0] = reorder point (must be ≥ −reorderQty), parameters[1] = reorder quantity (must be ≥ 1).
Two-argument convenience for setInitialPolicyParameters.
Change the policy parameters during a replication.