[IMP] Remove property_ids:value from _prepare_order_line_procurement function which...
[odoo/odoo.git] / addons / sale / sale.py
index c525ba0..d2bb4e1 100644 (file)
@@ -845,8 +845,7 @@ class sale_order(osv.osv):
             'procure_method': line.type,
             'move_id': move_id,
             'company_id': order.company_id.id,
-            'note': '\n'.join(line.name.split('\n')[1:]),
-            'property_ids': [(6, 0, [x.id for x in line.property_ids])]
+            'note': '\n'.join(line.name.split('\n')[1:])
         }
 
     def _prepare_order_line_move(self, cr, uid, order, line, picking_id, date_planned, context=None):