From 32d41097f6f7a5b8750f24ceb834653b4877fce1 Mon Sep 17 00:00:00 2001 From: "Jay (Open ERP)" Date: Fri, 2 Apr 2010 18:19:05 +0530 Subject: [PATCH] [FIX] Fields.function of type integer with multi attribute behaviour improved bzr revid: jvo@tinyerp.com-20100402124905-oqofyis9c7rr6fng --- bin/osv/fields.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/osv/fields.py b/bin/osv/fields.py index edf7815..980b3ad 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -699,7 +699,11 @@ class function(_column): if self._type == "integer": for r in res.keys(): # Converting value into string so that it does not affect XML-RPC Limits - res[r] = str(res[r]) + if isinstance(res[r],dict): # To treat integer values with _multi attribute + for record in res[r].keys(): + res[r][record] = str(res[r][record]) + else: + res[r] = str(res[r]) return res get_memory = get -- 1.7.10.4