File "/home/bellvantage/Documents/openerp-7.0/openerp-7.0/openerp/sql_db.py", line 226, in execute
res = self._obj.execute(query, params)
ProgrammingError: operator does not exist: integer = boolean
LINE 1: ...=1,write_date=(now() at time zone 'UTC') where id IN (false)
^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.
I tried to override the write function. in that i need to update another model's (bpl.company.define) column also.so i used the write() method.but its give above error & need to sort it. please advice me and explaint which parameters need to pass for the write() method (except cr,uid).
I upload my model class here. & view class here.
Line number 100 in bpl.py
Ok its sorted friend.issue with my entered data in database.the data which is going to read is null.so thats return false and error comes like that :-)
id IN (false)looks incorrect.idis probably integer, andfalseis boolean.