diff --git a/InvenTree/part/api.py b/InvenTree/part/api.py index eed93d57d5..77e0dbd03e 100644 --- a/InvenTree/part/api.py +++ b/InvenTree/part/api.py @@ -527,6 +527,9 @@ class PartScheduling(RetrieveAPI): quantity = max(line.quantity - line.received, 0) + # Multiply by the pack_size of the SupplierPart + quantity *= line.part.pack_size + add_schedule_entry( target_date, quantity,