From 91cb75babdd46284f08a191fe86774d8c8e674e0 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu <chm@odoo.com> Date: Tue, 3 Jun 2014 11:15:17 +0200 Subject: [PATCH] [FIX] product: remove wrong field on product.template. TODO: move packaging field form product.product to product.template --- addons/product/product.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/addons/product/product.py b/addons/product/product.py index a7a6b1ae1cbe..79c74a6a9cc1 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -535,9 +535,6 @@ class product_template(osv.osv): "resized as a 64x64px image, with aspect ratio preserved. "\ "Use this field anywhere a small image is required."), - '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."), - 'seller_ids': fields.one2many('product.supplierinfo', 'product_tmpl_id', 'Supplier'), 'seller_delay': fields.related('seller_ids','delay', 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 scheduler to order requests based on reordering delays."), -- GitLab