From 02cf0f36490b36159dc9a5389c2d9186de0cb5aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20van=20der=20Essen?= Date: Tue, 9 Dec 2014 21:45:06 +0100 Subject: [PATCH] [IMP] point_of_sale: removed the barcode field; already defined on res.partner --- addons/point_of_sale/res_users.py | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/point_of_sale/res_users.py b/addons/point_of_sale/res_users.py index f225022..e19ab7f 100644 --- a/addons/point_of_sale/res_users.py +++ b/addons/point_of_sale/res_users.py @@ -9,7 +9,6 @@ import openerp.addons.product.product class res_users(osv.osv): _inherit = 'res.users' _columns = { - 'barcode' : fields.char('Barcode', help="BarCode", oldname='ean13'), 'pos_security_pin': fields.char('Security PIN',size=32, help='A Security PIN used to protect sensible functionality in the Point of Sale'), 'pos_config' : fields.many2one('pos.config', 'Default Point of Sale', domain=[('state', '=', 'active')]), } -- 1.7.10.4