Bazz B
Bazz B

Reputation: 11

How to declare module_name in groups Odoo

I used this code in a xml view in ideas_app module:

groups="group_vote_user"

but i got this error "External ID must be fully qualified"

Is it really need module name like groups="ideas_app.group_vote_user" even this view in same module with group_vote_user security (in module ideas_app)?

Is there any ways to not declare module name or change with this.group_vote_user like that?

Upvotes: 0

Views: 105

Answers (1)

Bhavesh Odedra
Bhavesh Odedra

Reputation: 11141

I think, you need to check sequence of files in manifest file. For example, security.xml should be come first and then others view files.

I am not sure if there is a way to change it. But as per standards, we need to follow standard way like "module_name.xml_ID"

Upvotes: 1

Related Questions