From 3f85d4b4938f5e21f9bfad0d274a3fa036bcbf83 Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 3 Jun 2014 21:45:21 +0200 Subject: [PATCH] [FIX] product: correct SyntaxError made by kdiff3 (once again) during previous forward port --- addons/product/product.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/addons/product/product.py b/addons/product/product.py index 17088c7938c..cc23d144465 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -538,7 +538,10 @@ class product_template(osv.osv): help="Small-sized image of the product. It is automatically "\ "resized as a 64x64px image, with aspect ratio preserved. "\ "Use this field anywhere a small image is required."), - 'packaging_ids' : fields.one2many('product.packaging', 'product_tmpl_id', 'Logistical Units', + 'packaging_ids': fields.one2many( + 'product.packaging', 'product_tmpl_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."),