Skip to Content
Menu
This question has been flagged
1 Reply
6160 Views

I created a field many2one field with the following:

light_system = fields.Many2one('product.product', string='Lighting System', ondelete='restrict')


When I restart the server I get:

WARNING newtest openerp.fields: Field jobsite.details.light_system with unknown comodel_name 'product.product'

And when I try to select a product in the form it fails with:

ProgrammingError: relation "_unknown" does not exist

LINE 1: SELECT "_unknown".id FROM "_unknown" ORDER BY "_unknown"."id...

I have a many2one field with the res.users in the same model and that works fine, this one with either product.product or product.template fails. What am I missing?


Any help will be greatly appreciated


Avatar
Discard
Best Answer

Ensure that you have a dependency with the product module in your module __openerp__.py. Restart the server and update your module

Avatar
Discard