openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #23748
[Bug 1131653] Re: [7.0] _check_recursion gives false positive if ids include a parent/child pair
** Branch linked: lp:~therp-nl/openupgrade-
server/7.0-lp1131653_check_recursion_fix_false_positives
--
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/1131653
Title:
[7.0] _check_recursion gives false positive if ids include a
parent/child pair
Status in OpenERP Server:
New
Status in OpenUpgrade Server:
Triaged
Status in OpenUpgrade Server 7.0 series:
Triaged
Bug description:
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.
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/1131653/+subscriptions
References