跳至內容
選單
此問題已被標幟
1 回覆
6671 瀏覽次數

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


頭像
捨棄
最佳答案

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

頭像
捨棄