stock_picking_priority: wrong domain
Bug #1297220 reported by
Guewen Baconnier @ Camptocamp
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Stock And Logistic Flows |
Fix Released
|
High
|
Unassigned |
Bug Description
In method retry_assign_all(), when the argument ids contain ids, it is added to the domain:
if ids:
domain += [('ids', 'in', ids)]
Which should be
if ids:
domain += [('id', 'in', ids)]
Related branches
lp://qastaging/~camptocamp/stock-logistic-flows/7.0-stock_picking_priority-ids-domain-1297220-gbr
- Pedro Manuel Baeza: Approve (code review)
- Yannick Vaucher @ Camptocamp: Approve (code review)
-
Diff: 12 lines (+1/-1)1 file modifiedstock_picking_priority/picking_priority.py (+1/-1)
Changed in stock-logistic-flows: | |
status: | New → Fix Committed |
importance: | Undecided → High |
Changed in stock-logistic-flows: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.