From d2e660b31ddf71a141ae3ff7f119bca64f4c0edc Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Wed, 8 Jul 2015 13:42:45 +0200 Subject: [PATCH] [FIX] purchase: field label No need for uppercase, courtesy of Lionel Sausin. Well, Clarice - have the lambs stopped screaming? -- Hannibal Lecter --- addons/purchase/stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/purchase/stock.py b/addons/purchase/stock.py index 24895c2a402..4c2998474f4 100644 --- a/addons/purchase/stock.py +++ b/addons/purchase/stock.py @@ -227,7 +227,7 @@ class stock_warehouse(osv.osv): _columns = { 'buy_to_resupply': fields.boolean('Purchase to resupply this warehouse', help="When products are bought, they can be delivered to this warehouse"), - 'buy_pull_id': fields.many2one('procurement.rule', 'BUY rule'), + 'buy_pull_id': fields.many2one('procurement.rule', 'Buy rule'), } _defaults = { 'buy_to_resupply': True,