[FIX] stock: correct label for picking_id
authorRichard Mathot <rim@openerp.com>
Wed, 26 Nov 2014 14:20:41 +0000 (15:20 +0100)
committerRichard Mathot <rim@openerp.com>
Wed, 26 Nov 2014 14:20:41 +0000 (15:20 +0100)
addons/stock/stock.py

index 3a29372..4aa959f 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', 'Reference Stock Move', select=True, states={'done': [('readonly', True)]}),
+        'picking_id': fields.many2one('stock.picking', 'Picking Reference', select=True, states={'done': [('readonly', True)]}),
         'note': fields.text('Notes'),
         'state': fields.selection([('draft', 'New'),
                                    ('cancel', 'Cancelled'),