[FIX] stock: rename picking to transfer, to be coherent with 52c3b52bf09fea7e0920ebce...
authorRichard Mathot <rim@openerp.com>
Fri, 28 Nov 2014 13:20:37 +0000 (14:20 +0100)
committerRichard Mathot <rim@openerp.com>
Fri, 28 Nov 2014 13:20:37 +0000 (14:20 +0100)
addons/stock/stock.py

index 4aa959f..bdc78e3 100644 (file)
@@ -1685,7 +1685,7 @@ class stock_move(osv.osv):
         'move_dest_id': fields.many2one('stock.move', 'Destination Move', help="Optional: next stock move when chaining them", select=True, copy=False),
         'move_orig_ids': fields.one2many('stock.move', 'move_dest_id', 'Original Move', help="Optional: previous stock move when chaining them", select=True),
 
-        'picking_id': fields.many2one('stock.picking', 'Picking Reference', select=True, states={'done': [('readonly', True)]}),
+        'picking_id': fields.many2one('stock.picking', 'Transfer Reference', select=True, states={'done': [('readonly', True)]}),
         'note': fields.text('Notes'),
         'state': fields.selection([('draft', 'New'),
                                    ('cancel', 'Cancelled'),