From a79548c055b8cb159f377a95f1a900dc2bbf2cd8 Mon Sep 17 00:00:00 2001 From: Andreas Osim Date: Fri, 15 Jun 2018 08:44:05 +0200 Subject: [PATCH] allow 'manufacturing_number' in SST-10 --- ext/custom-addons/dp_custom/models/product.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/custom-addons/dp_custom/models/product.py b/ext/custom-addons/dp_custom/models/product.py index ed1b0ec0..e2e95aee 100644 --- a/ext/custom-addons/dp_custom/models/product.py +++ b/ext/custom-addons/dp_custom/models/product.py @@ -136,7 +136,7 @@ class ProductTemplate(models.Model): def _get_specified_fields(self): return ['default_code', 'name', 'length', 'width', 'thickness', 'surface', 'active', 'weight', 'is_internal', 'xcat_id', 'notes', 'material_type_id', 'intrastat_id', 'sale_ok', 'assembly_line_ids', 'list_price', - 'height', 'categ_id', 'can_be_sold_unconfigured', 'image', 'tax'] + 'height', 'categ_id', 'can_be_sold_unconfigured', 'image', 'tax', 'manufacturing_number'] class ProductCategory(models.Model):