From: Frédéric van der Essen Date: Tue, 9 Dec 2014 20:45:06 +0000 (+0100) Subject: [IMP] point_of_sale: removed the barcode field; already defined on res.partner X-Git-Url: http://git.inspyration.org/?p=odoo%2Fodoo.git;a=commitdiff_plain;h=02cf0f36490b36159dc9a5389c2d9186de0cb5aa [IMP] point_of_sale: removed the barcode field; already defined on res.partner --- 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')]), }