我是 Odoo 13.0(和任何 Odoo 版本)的新手。我刚刚构建了我的第一个模块,并成功安装了它。问题是我在菜单上看不到我安装的模块。我已经尝试重新启动服务器,并且我已经研究了这些来源,但似乎任何东西都对我有用:
资料来源:
这是我的文件,希望有人能指出我正确的方向。
__manifest__.py
# -*- coding: utf-8 -*-
{
'name': "sample_app",
'summary': """
Short (1 phrase/line) summary of the module's purpose, used as
subtitle on modules listing or apps.openerp.com""",
'description': """
Long description of module's purpose
""",
'author': "My Company",
'website': "http://www.yourcompany.com",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/13.0/odoo/addons/base/data/ir_module_category_data.xml
# for the full list
'category': 'Uncategorized',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
# 'security/ir.model.access.csv',
'views/views.xml',
'views/templates.xml',
],
# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'installable':True,
'auto_install':False,
'application':True
}
__init__.py
# -*- coding: utf-8 -*-
from . import controllers
from . import models
至尊宝的传说
jeck猫
收到一只叮咚
相关分类