Skip to content

Commit

Permalink
[FIX] sale_dropshipping: don't ignore picking_id in _create_pickings_…
Browse files Browse the repository at this point in the history
…and_procurements
  • Loading branch information
rdeheele committed Mar 21, 2014
1 parent 438e849 commit 9afac6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sale_dropshipping/sale.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _create_pickings_and_procurements(self, cr, uid, order, order_lines,
self._create_procurements_direct_mto(cr, uid, order, dropship_lines,
context=context)
res = super(sale_order, self)._create_pickings_and_procurements(
cr, uid, order, normal_lines, None, context)
cr, uid, order, normal_lines, picking_id, context)
return res

def action_button_confirm(self, cr, uid, ids, context=None):
Expand Down

0 comments on commit 9afac6e

Please sign in to comment.