From 39325842e473ffee80fb7fbc967a4bd21c8a09b7 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Tue, 28 Apr 2015 11:15:39 +0200 Subject: [PATCH] [FIX] note: do not set self in args of a super call This silly mistake prevents to group notes by something else than stages. opw-633980 --- addons/note/note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/note/note.py b/addons/note/note.py index 3e419888c28..ee8d6bb139a 100644 --- a/addons/note/note.py +++ b/addons/note/note.py @@ -173,7 +173,7 @@ class note_note(osv.osv): return result else: - return super(note_note, self).read_group(self, cr, uid, domain, fields, groupby, + return super(note_note, self).read_group(cr, uid, domain, fields, groupby, offset=offset, limit=limit, context=context, orderby=orderby)