Skip to content

Commit

Permalink
[FIX] _create_product_valuation_moves (stock.move) does not use conte…
Browse files Browse the repository at this point in the history
…xt while creating account.move

bzr revid: lorenzo.battistini@agilebg.com-20130527133044-lzrq5c5t30qrhel7
  • Loading branch information
eLBati committed May 27, 2013
1 parent 727de36 commit a4f5aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/stock/stock.py
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,7 @@ def _create_product_valuation_moves(self, cr, uid, move, context=None):
{
'journal_id': j_id,
'line_id': move_lines,
'ref': move.picking_id and move.picking_id.name})
'ref': move.picking_id and move.picking_id.name}, context=context)

def action_done(self, cr, uid, ids, context=None):
""" Makes the move done and if all moves are done, it will finish the picking.
Expand Down

0 comments on commit a4f5aba

Please sign in to comment.