Basic Problems
by
Wyden Silvan
—
last modified
13.11.2009 18:24
- Problem: you can't add in Project/Tasks/Tasklist new entries (Error: account_id can't be null
Solution: remove the property "not null" in the databasetable account_analytic_line in the columns account_id - Problem: with version 5.0.3 some sql querys have none and not null
Solution: add in the function 'execute' in the file /usr/lib/python2.5/site-packages/openerp-server/sql_db.py:
query = query.replace(',None', ',NULL').replace('None,', 'NULL,')
