diff --git a/addons/product/product.py b/addons/product/product.py index 1869b68c0a8..ae9ac9351e2 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -193,7 +193,6 @@ class product_template(osv.osv): 'state': fields.selection([('draft', 'In Development'),('sellable','In production'),('end','End of lifecycle'),('obsolete','Obsolete')], 'State'), 'uos_id' : fields.many2one('product.uom', 'Unit of Sale'), 'uos_coeff': fields.float('UOM -> UOS Coeff'), - 'intrastat': fields.char('Intrastat number', size=16), 'mes_type': fields.selection((('fixed', 'Fixed'), ('variable', 'Variable')), 'Mesure type', required=True), 'tracking': fields.boolean('Track lots'), 'seller_delay': fields.function(_calc_seller_delay, method=True, type='integer', string='Supplier lead time', help="This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the sceduler to order requests based on reordering delays."),