From 1b3d045ceed3fad80bc5740c41731791ec09b6cd Mon Sep 17 00:00:00 2001 From: "Vidhin Mehta (OpenERP)" Date: Wed, 31 Oct 2012 15:37:37 +0530 Subject: [PATCH] [FIX] added *.id* field manually. lp bug: https://launchpad.net/bugs/1071794 fixed bzr revid: vme@tinyerp.com-20121031100737-u0r015etp6jilo80 --- addons/web/controllers/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index 72ffd9567f6..4dabc4c2846 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -1767,7 +1767,9 @@ class Export(View): def fields_info(self, req, model, export_fields): info = {} fields = self.fields_get(req, model) - + if ".id" in export_fields: + fields['.id'] = fields.pop('id', {'string': 'ID'}) + # To make fields retrieval more efficient, fetch all sub-fields of a # given field at the same time. Because the order in the export list is # arbitrary, this requires ordering all sub-fields of a given field