diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index 93e08db64ea..d0bdfe3cdc4 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -1481,6 +1481,8 @@ class Export(openerpweb.Controller): if all(dict(attrs).get('readonly', True) for attrs in field.get('states', {}).values()): continue + if not field.get('exportable', True): + continue id = prefix + (prefix and '/'or '') + field_name name = parent_name + (parent_name and '/' or '') + field['string']