odoo/addons/hr_payroll/report
Joren Van Onder be48a1402c [FIX] hr_payroll: avoid infinite recursion
The get_recursive_parent function seemingly depended on the ordering of
the rule_categories recordset which happens to work fine in most cases
because all data first defines the parent before defining the children
rule categories. But if you happen to do it the other way around it
won't work and it will infinitely call itself because:

if rule_categories[0].parent_id:
    rule_categories = rule_categories[0].parent_id | rule_categories

won't change the value of rule_categories[0].

opw-673222 (loosely related)
2016-05-25 09:57:37 +02:00
..
__init__.py [IMP] clean permissions and shebang in files 2013-05-14 12:31:13 +02:00
report_contribution_register.py [IMP] hr* reports converted to qweb 2014-04-15 21:19:11 +02:00
report_payslip.py [IMP] hr* reports converted to qweb 2014-04-15 21:19:11 +02:00
report_payslip_details.py [FIX] hr_payroll: avoid infinite recursion 2016-05-25 09:57:37 +02:00