My guess is that in the file: /usr/lib/python2.5/site-packages/openerp-server/addons/account/project/project.py, @ line 117-120, one can read: cr.execute("SELECT a.id, r.currency_id " "FROM account_analytic_account a " "INNER JOIN res_company r ON (a.company_id = r.id) " "WHERE a.id in %s", (tuple(ids),))
My proposition is that the query should use "tuple(ids2)" instead of "tuple(ids)", because "ids2" contains the children of "ids"
Hi
We have the same problem.
My guess is that in the file: /usr/lib/ python2. 5/site- packages/ openerp- server/ addons/ account/ project/ project. py, @ line 117-120, one can read:
cr.execute( "SELECT a.id, r.currency_id "
"FROM account_ analytic_ account a "
"INNER JOIN res_company r ON (a.company_id = r.id) "
"WHERE a.id in %s", (tuple(ids),))
My proposition is that the query should use "tuple(ids2)" instead of "tuple(ids)", because "ids2" contains the children of "ids"