Skip to Content
Menu
This question has been flagged
Hello everyone,
I'm currently encountering an error in my Odoo instance related to an undefined field in the res.users model. The error specifically mentions that the field "hide_menu_access_ids" is undefined.
To provide some context, I've installed the "Hide Menu" module from a third-party group by importing it via Odoo > Apps > Import Module.
Upon inspection of the data model, I couldn't find any definition for this field. How can I go about resolving this error?
Any assistance or suggestions would be greatly appreciated.

Thank you in advance!

===================================================================

UncaughtPromiseError > OwlError

Uncaught Promise > The following error occurred in onWillStart: ""res.users"."hide_menu_access_ids" field is undefined."

OwlError: The following error occurred in onWillStart: ""res.users"."hide_menu_access_ids" field is undefined."

    OwlError@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:684:1

    wrapError@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:1044:77

    onWillStart@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:1050:117

    setup@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:9780:303

    ComponentNode@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:1002:202

    createComponent/

    template@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js line 1500 > Function:11:27

    _render@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:940:96

    render@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:939:6

    initiateRender@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:1007:47


Caused by: Error: "res.users"."hide_menu_access_ids" field is undefined.

    Field.parseFieldNode@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:7640:231

    parse/

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:59

    visitChildren@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4218:176

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:129

    visitChildren@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4218:176

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:129

    visitChildren@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4218:176

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:129

    visitChildren@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4218:176

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:129

    visitChildren@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4218:176

    visit@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:129

    visitXML@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:4219:207

    parse@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:8517:799

    props@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:8703:1061

    loadView@http://localhost:8070/web/assets/40d68b8/web.assets_web.min.js:9795:179

Avatar
Discard
Best Answer

Hi,

You cannot import the apps containing python files via this method and it is clearly mentioned in the import module wizard, that only supported is data modules.

What you have to do is:

* Download the app from the store
* Add it to your addons path
* Restart the service
* Update the app list
* Install the app

How to Download and Install Module From Odoo App Store



Thanks

Avatar
Discard
Best Answer

Hi,

The error is occurring from the Js file, which is a promise error. This means while rendering the file it expects a value for "hide_menu_access_ids" but the value is not loading in it, So it is showing as undefined.Please ensure that you have installed the dependent modules, Provide consoles in your Js files inside the onwillstart hooks to verify whether to check the value is defined or not.


Hope it helps

Avatar
Discard
Related Posts Replies Views Activity
0
Aug 23
1207
0
Feb 23
1505
3
Jan 24
8041
0
Jan 24
7
2
Sep 23
1888