openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #23737
[Bug 1131653] [NEW] [7.0] _check_recursion signals non-existing recursion
You have been subscribed to a public bug:
Here is my company parent structure:
(Pdb) self.read(cr, uid, [3, 4], ['parent_id'])
[{'id': 3, 'parent_id': False},
{'id': 4, 'parent_id': (3, u'Acme 3')}]
That is to say, record 3 is the parent of record 4. Record 3 does not
have a parent itself.
When I write the same value to all records, the constraint on
_check_recursion signals a recursive structure incorrectly:
(Pdb) self.check_recursion(cr, uid, [3, 4], context=None, parent=None)
False
Having each record checked individually, the method gives the right
results.
(Pdb) self._check_recursion(cr, uid, [3], context=None, parent=None)
True
(Pdb) self.check_recursion(cr, uid, [4], context=None, parent=None)
True
These results are inconsistent and as a result I cannot write the same
field on these records simultaneously.
** Affects: openobject-server
Importance: Undecided
Status: New
--
[7.0] _check_recursion signals non-existing recursion
https://bugs.launchpad.net/bugs/1131653
You received this bug notification because you are a member of OpenERP Indian Team, which is subscribed to OpenERP Server.
References