[FIX] added *.id* field manually.

lp bug: https://launchpad.net/bugs/1071794 fixed

bzr revid: vme@tinyerp.com-20121031100737-u0r015etp6jilo80
This commit is contained in:
Vidhin Mehta (OpenERP) 2012-10-31 15:37:37 +05:30
parent 8597e63c29
commit 1b3d045cee
1 changed files with 3 additions and 1 deletions

View File

@ -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