Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,13 @@ and fill out the following fields for the new reordering rule line item:
levels goes below this number, the replenishment is triggered.
- :guilabel:`Max Quantity`: The amount of product that should be available after replenishing the
product.
- :guilabel:`Multiple Quantity`: If the product should be ordered in specific quantities, enter the
number that should be ordered. For example, if the :guilabel:`Multiple Quantity` is set to `5`,
and only 3 are needed, 5 products are replenished.
- :guilabel:`Multiple Quantity`: Ensures products are replenished in fixed multiples, rounding the
ordered quantity up to the nearest multiple that meets or slightly exceeds the :guilabel:`Max
Quantity`.

For example, if :guilabel:`Multiple Quantity` is set to `3`, Odoo orders in multiples of three (3,
6, 9, ...). If the :guilabel:`Max Quantity` is `20`, `21` is ordered because it is the smallest
multiple of three that reaches or exceeds the maximum.
Comment on lines +109 to +111
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as the remark in for the v 19.0.
It depends on the min qty and the forecasted.
If the min is 8 as soon as the forecasted qty is 8 or lower it will compute the the qty to reorder in order to reach the max qty but it will adapt the to order qty to be a multiple of the multiple qty.
If forecast is 8 and max is 20 --> to reorder = 12 it's a multiple of 3 so OK
If forecast is 6 and max is 20 --> to reorder = 14 but it's not a multiple of 3 so it will order 15.


.. image:: reordering_rules/reordering-rule-form.png
:align: center
Expand Down