From 787a1422d7f697bea4e8342b94b61fb8c08e18dc Mon Sep 17 00:00:00 2001 From: Goffin Simon Date: Tue, 12 May 2015 21:42:34 +0200 Subject: [PATCH] [FIX] sale_stock: Additional information on invoice When invoicing "on delivery", the "additional information" must be passed from the SO to the invoice. Same behaviour as "on demand". opw:639590 --- addons/sale_stock/sale_stock.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/sale_stock/sale_stock.py b/addons/sale_stock/sale_stock.py index 924f458606a..5d4430da3f3 100644 --- a/addons/sale_stock/sale_stock.py +++ b/addons/sale_stock/sale_stock.py @@ -471,5 +471,6 @@ class stock_picking(osv.osv): 'user_id': sale.user_id.id, 'section_id': sale.section_id.id, 'name': sale.client_order_ref or '', + 'comment': sale.note, }) return inv_vals