Comment 2 for bug 1217707

Revision history for this message
Ajit (alessandro-domanico) wrote :

Hello Christian,

I don't know where to find build numbers for all components. What can I add as information is the accounting module version:

account_accountant
version:7.0.1.1

I can still reproduce the error but I'm working with a patched version of account.py:
[line 346]
                        try:
                            if child.company_id.currency_id.id == current.company_id.currency_id.id:
                                sums[current.id][fn] += sums[child.id][fn]
                            else:
                                sums[current.id][fn] += currency_obj.compute(cr, uid, child.company_id.currency_id.id, current.company_id.currency_id.id, sums[child.id][fn], context=context)
                        except KeyError:
                         pass
[...]