Skip to Content
Menu
This question has been flagged
2 Replies
11793 Views
Hello, I have created an audit module with Odoo studio in Odoo 13.0. I have exported the customization files of my module and I have imported them into the Odoo.sh addons. Then I created a controller to display the audit report in the website. However when I update the module in the terminal I get a Warning like this: odoo.modules.loading: invalid module names, ignored: audit. And an Error: odoo.modules.loading: Some modules have inconsistent states, some dependencies may be missing: ['studio_customization'].
Avatar
Discard
Best Answer

Hello,

It seems that you have used the 'studio_customization' module in your custom 'audit' module, and you might not have added 'studio_customization' as depends on in the manifest file.

If you have taken the reference of any files exported files,they you should add studio_customization in dependency.

if you have not used any reference of exported files of studio_customisation then please share a full log of the error so we can have an idea.

Thank You!


Regards,




Email:      odoo@aktivsoftware.com  

Skype: kalpeshmaheshwari

    

Avatar
Discard
Author Best Answer
Jainesh Shah


This code is the content of the manifest file of my custom module : 

# -*- coding: utf-8 -*-

{

    'name': 'Studio customizations',

    'version': '13.0.1.0',

    'category': 'Studio',

    'description': u"""

This module has been generated by Odoo Studio.

It contains the apps created with Studio and the customizations of existing apps.

""",

    'author': 'YourCompany',

    'depends': [

        'base',

        'web_studio',

    ],

    'data': [

        'data/ir_model.xml',

        'data/ir_model_fields.xml',

        'data/ir_ui_view.xml',

        'data/ir_actions_act_window.xml',

        'data/ir_ui_menu.xml',

        'data/ir_model_access.xml',

        #'data/sites_details_page.xml',

    ],

    'application': True,

    'license': 'OPL-1',

}

Avatar
Discard