Skip to content
Snippets Groups Projects
Commit 10c3b8c3 authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] purchase: keep reference to purchase order line

When generating an invoice from a stock.picking, the reference to the purchase.order.line needs to be kept (e.g. this is needed by anglo-saxon for price valuation). (opw 600767)
parent 6e0c73d2
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,8 @@ class stock_move(osv.osv):
return super(stock_move, self).copy(cr, uid, id, default, context)
def _create_invoice_line_from_vals(self, cr, uid, move, invoice_line_vals, context=None):
if move.purchase_line_id:
invoice_line_vals['purchase_line_id'] = move.purchase_line_id.id
invoice_line_id = super(stock_move, self)._create_invoice_line_from_vals(cr, uid, move, invoice_line_vals, context=context)
if move.purchase_line_id:
purchase_line = move.purchase_line_id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment