X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fproduct%2Fproduct.py;h=3f4436373c564e499ee7b4e4298f702b33107e83;hb=f2051414f71d239217fe928aee9dbc7ed6501d4a;hp=fe17fe99ea93d267f891ea4e5f17975cfb659aa4;hpb=43ed050319ab1627ac99677b3012a73c06fa77ad;p=odoo%2Fodoo.git diff --git a/addons/product/product.py b/addons/product/product.py index fe17fe9..3f44363 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -518,7 +518,7 @@ class product_product(osv.osv): 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the product without removing it."), 'variants': fields.char('Variants', size=64), 'product_tmpl_id': fields.many2one('product.template', 'Product Template', required=True, ondelete="cascade"), - 'ean13': fields.char('EAN13', size=13), + 'ean13': fields.char('EAN13', size=13, help='Barcode'), 'packaging' : fields.one2many('product.packaging', 'product_id', 'Logistical Units', help="Gives the different ways to package the same product. This has no impact on the picking order and is mainly used if you use the EDI module."), 'price_extra': fields.float('Variant Price Extra', digits_compute=dp.get_precision('Sale Price')), 'price_margin': fields.float('Variant Price Margin', digits_compute=dp.get_precision('Sale Price')),