Shravy
Shravy

Reputation: 666

How to resolve this error in Odoo - 8?

I restored a database in Odoo and when I perform or click any operations, i am getting this error

AttributeError: Field res_manager does not exist

Error context: View res.users.form [view_id: 153, xml_id: base.view_users_form, model: res.users, parent_id: n/a]

Upvotes: 2

Views: 1678

Answers (2)

Usman Maqbool
Usman Maqbool

Reputation: 3371

Please reinstall your module by command line like this :

-Go to your server path in command prompt(Terminal)

-Restart your server with following command for 7.0

python open-server --addons-path=your_addons_path -d database_name -u app_name

Hope this work for you.

Upvotes: 2

Adrian Merrall
Adrian Merrall

Reputation: 2499

That field doesn't exist in the core product so perhaps your database has a custom module that isn't in the add-ons path you are running now? Odoo shows the addon's path in the first couple of lines of logging when it starts.

Upvotes: 1

Related Questions