Odoo 13.0 在菜单上看不到我安装的模块
Odoo 13.0 Can't see my installed module on the menu
我是 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
models/models.py
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class StudentRecord(models.Model):
_name = "student.student"
name = fields.Char(string="Name", required=True)
middle_name = fields.Char(string="Middle Name", required=True)
last_name = fields.Char(srtring="Last Name", required=True)
photo = fields.Binary(string="Photo")
student_age = fields.Integer(string="Age")
student_dob = fields.Date(string="Date of Birth")
student_gender = fields.Selection([("m","Male"),("f","Female"),("o","Other")], string="Gender")
student_blood_group = fields.Selection(
[
("A+","A+ve"),
("B+","B+ve"),
("O+","O+ve"),
("AB+","AB+ve"),
("A-","A-ve"),
("B+","B-ve"),
("O-","O-ve"),
("AB-","AB-ve"),
], string = "Blood Group")
views/views.xml
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_student_form" model="ir.ui.view">
<field name="name">student.student.form</field>
<field name="model">student.student</field>
<field name="priority" eval="8" />
<field name="arch" type="xml">
<form string="Student">
<sheet>
<field name="photo" widget="image" class="oe_left oe_avatar" />
<div class="oe_title">
<h1>
<table>
<tr>
<td style="padding-right:10px;"><field name="name" required="1" placeholder="First Name" /></td>
<td style="padding-right:10px;"><field name="middle_name" placeholder="Middle Name" /></td>
<td style="padding-right:10px;"><field name="last_name" placeholder="Last Name" /></td>
</tr>
</table>
</h1>
</div>
<notebook colspan="4">
<page name="personal_information"
string="Personal Information">
<group col="4" colspan="4"
name="personal_detail">
<field name="student_gender" />
<field name="student_age" />
<field name="student_dob" />
<field name="student_gender" />
<field name="student_blood_group" />
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="action_view_students">
<field name="name">Students</field>
<field name="res_model">student.student</field>
<field name="view_mode">tree,form</field>
<field name="domain">[]</field>
</record>
<menuitem id="menu_school" name="School"/>
<menuitem id="school_student" name="Students" parent="menu_school" action="action_view_students"/>
</odoo>
编辑:
这是菜单的图像,我期待在安装后在那里看到我的 sample_test 应用程序。
另外,Odoo 在这里显示我安装的应用程序:
感谢您抽出宝贵时间帮助解决此事。谢谢!!
我刚刚找到了操作方法。这些是我解决问题所遵循的步骤:
- 如图所示,我的菜单上没有 学校 模块。
- 所以,我转到设置并激活了开发者模式(第一个)
- 然后页面重新加载后,我的主栏(不知道它的实际名称)变成了这样:
- 我注意到 bug 出现在我的 主栏
- 然后出于好奇,我点击了错误并选择了选项成为超级用户
- 我注意到我的 主栏 变成了这样:
- 最后,在打开 菜单 后,我的模块就在那里了!! (万岁!)
而且,故事到此结束(目前)我仍然需要弄清楚如何将这些更改部署到生产环境中,但我的朋友们就是另一回事了!
谢谢!
大多数情况下,当我们没有在清单中添加我们的安全文件时,我在代码中看到它被注释掉了
发生这种情况是因为 security file
。因为您没有为该模型设置安全性。
让我更详细地解释一下:您正在使用菜单和所有这些东西创建您的自定义模型和视图,但您没有分配任何可以 阅读 这些东西,谁可以 写入 ,谁可以 删除 等等带有自定义字段的模型已在后端成功创建但不可见
For that we will use our security file to grant access to our required
group/users
security/ir.model.access.csv
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_student_student,access.student.student,model_student_student,base.group_user,1,1,1,1
在这里您可以看到我正在授予对 base.group_user 的访问权限以及我正在授予的访问权限是什么?在这里你可以看到 1s 表示是,我正在授予读取权限(prem_read),写入权限(prem_write), 创建权限(prem_create) 最后一个删除权限(prem_unlink).
读取权限将使您能够以图形形式读取(查看)您的模型。
注意:不要忘记在数据列表的清单文件中添加安全文件
另一个提示,将您的用户设置到正确的组:
设置/管理用户/您的用户(编辑)/其他/
勾选 [ ] 适当的组 - 例如您的模块:Admin
我是 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
models/models.py
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class StudentRecord(models.Model):
_name = "student.student"
name = fields.Char(string="Name", required=True)
middle_name = fields.Char(string="Middle Name", required=True)
last_name = fields.Char(srtring="Last Name", required=True)
photo = fields.Binary(string="Photo")
student_age = fields.Integer(string="Age")
student_dob = fields.Date(string="Date of Birth")
student_gender = fields.Selection([("m","Male"),("f","Female"),("o","Other")], string="Gender")
student_blood_group = fields.Selection(
[
("A+","A+ve"),
("B+","B+ve"),
("O+","O+ve"),
("AB+","AB+ve"),
("A-","A-ve"),
("B+","B-ve"),
("O-","O-ve"),
("AB-","AB-ve"),
], string = "Blood Group")
views/views.xml
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_student_form" model="ir.ui.view">
<field name="name">student.student.form</field>
<field name="model">student.student</field>
<field name="priority" eval="8" />
<field name="arch" type="xml">
<form string="Student">
<sheet>
<field name="photo" widget="image" class="oe_left oe_avatar" />
<div class="oe_title">
<h1>
<table>
<tr>
<td style="padding-right:10px;"><field name="name" required="1" placeholder="First Name" /></td>
<td style="padding-right:10px;"><field name="middle_name" placeholder="Middle Name" /></td>
<td style="padding-right:10px;"><field name="last_name" placeholder="Last Name" /></td>
</tr>
</table>
</h1>
</div>
<notebook colspan="4">
<page name="personal_information"
string="Personal Information">
<group col="4" colspan="4"
name="personal_detail">
<field name="student_gender" />
<field name="student_age" />
<field name="student_dob" />
<field name="student_gender" />
<field name="student_blood_group" />
</group>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="action_view_students">
<field name="name">Students</field>
<field name="res_model">student.student</field>
<field name="view_mode">tree,form</field>
<field name="domain">[]</field>
</record>
<menuitem id="menu_school" name="School"/>
<menuitem id="school_student" name="Students" parent="menu_school" action="action_view_students"/>
</odoo>
编辑: 这是菜单的图像,我期待在安装后在那里看到我的 sample_test 应用程序。
另外,Odoo 在这里显示我安装的应用程序:
感谢您抽出宝贵时间帮助解决此事。谢谢!!
我刚刚找到了操作方法。这些是我解决问题所遵循的步骤:
- 如图所示,我的菜单上没有 学校 模块。
- 所以,我转到设置并激活了开发者模式(第一个)
- 然后页面重新加载后,我的主栏(不知道它的实际名称)变成了这样:
- 我注意到 bug 出现在我的 主栏
- 然后出于好奇,我点击了错误并选择了选项成为超级用户
- 我注意到我的 主栏 变成了这样:
- 最后,在打开 菜单 后,我的模块就在那里了!! (万岁!)
而且,故事到此结束(目前)我仍然需要弄清楚如何将这些更改部署到生产环境中,但我的朋友们就是另一回事了!
谢谢!
大多数情况下,当我们没有在清单中添加我们的安全文件时,我在代码中看到它被注释掉了
发生这种情况是因为 security file
。因为您没有为该模型设置安全性。
让我更详细地解释一下:您正在使用菜单和所有这些东西创建您的自定义模型和视图,但您没有分配任何可以 阅读 这些东西,谁可以 写入 ,谁可以 删除 等等带有自定义字段的模型已在后端成功创建但不可见
For that we will use our security file to grant access to our required group/users
security/ir.model.access.csv
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink access_student_student,access.student.student,model_student_student,base.group_user,1,1,1,1
在这里您可以看到我正在授予对 base.group_user 的访问权限以及我正在授予的访问权限是什么?在这里你可以看到 1s 表示是,我正在授予读取权限(prem_read),写入权限(prem_write), 创建权限(prem_create) 最后一个删除权限(prem_unlink).
读取权限将使您能够以图形形式读取(查看)您的模型。
注意:不要忘记在数据列表的清单文件中添加安全文件
另一个提示,将您的用户设置到正确的组:
设置/管理用户/您的用户(编辑)/其他/
勾选 [ ] 适当的组 - 例如您的模块:Admin