Skip to content

Commit

Permalink
[FIX] avoids losing picking_id information and generating more pickin…
Browse files Browse the repository at this point in the history
…gs than expected
  • Loading branch information
rdeheele authored and yvaucher committed Mar 21, 2014
2 parents 438e849 + 9afac6e commit ed267ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sale_dropshipping/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#
##############################################################################
{"name": "Sale Dropshipping",
"version": "1.1",
"version": "1.1.1",
"author": "Akretion",
"website": "http://www.openerp.com",
"category": "Generic Modules/Purchase",
Expand Down
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 ed267ee

Please sign in to comment.