We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d8e0f commit dd060c5Copy full SHA for dd060c5
domain_model.py
@@ -27,8 +27,6 @@ def allocate_to(order, source):
27
def allocate_to_sources(order, sources):
28
allocations = {}
29
for sku, quantity in order.items():
30
- if sku in allocations:
31
- continue
32
for source in sources:
33
allocate_line(sku, quantity, source, allocations)
34
if sku in allocations:
0 commit comments