From 39606a7d270a6c08c1e95d557b9d8f2751207139 Mon Sep 17 00:00:00 2001 From: Richard Mathot Date: Wed, 26 Nov 2014 15:20:41 +0100 Subject: [PATCH] [FIX] stock: correct label for picking_id --- addons/stock/stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 3a29372..4aa959f 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -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'), -- 1.7.10.4