gpt4 book ai didi

xml - Odoo 10 :Creating Security rules for custom module

转载 作者:数据小太阳 更新时间:2023-10-29 02:11:48 25 4
gpt4 key购买 nike

目标:在用户表单中添加一个选项,该选项带有“演示模块访问”标签,并带有下拉菜单以选择自定义模块的安全组。

型号名称:simcard_simcard

模块名称 : simcard

我的 ir.model.access.csv :

id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
demo_admin, Model admin access,model_simcard_simcard,simcard.group_manager,1,1,1,1
demo_user, Model user access,model_simcard_simcard,simcard.group_user,1,0,0,0

和我的安全>user_groups.xml :

    <record model="ir.module.category" id="module_management">
<field name="name">Demo module access</field>
<field name="description">User access level for this module</field>
<field name="sequence">3</field>
</record>

<record id="group_user" model="res.groups">
<field name="name">User</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
<field name="category_id" ref="simcard.module_management"/>
</record>

<record id="group_manager" model="res.groups">
<field name="name">Manager</field>
<field name="implied_ids" eval="[(4, ref('simcard.group_user'))]"/>
<field name="category_id" ref="simcard.module_management"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

我的 list 文件:

# any module necessary for this one to work correctly
'depends': ['base'],

# always loaded
'data': [
'security/user_groups.xml',
'security/ir.model.access.csv',
'views/views.xml',
'views/templates.xml',
],

'qweb': ['static/xml/tree_view_button.xml'],

# only loaded in demonstration mode
'demo': [
'demo/demo.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}

我得到了这个错误:

    018-10-10 11:00:32,234 8890 ERROR test werkzeug: Error on request:
Traceback (most recent call last):
File "/Users/anubhavjhalani/odoo-env10/lib/python2.7/site-packages/werkzeug/serving.py", line 193, in run_wsgi
execute(self.server.app)
File "/Users/anubhavjhalani/odoo-env10/lib/python2.7/site-packages/werkzeug/serving.py", line 181, in execute
application_iter = app(environ, start_response)
File "/Users/anubhavjhalani/odoo10/odoo/service/server.py", line 245, in app
return self.app(e, s)
File "/Users/anubhavjhalani/odoo10/odoo/service/wsgi_server.py", line 186, in application
return application_unproxied(environ, start_response)
File "/Users/anubhavjhalani/odoo10/odoo/service/wsgi_server.py", line 172, in application_unproxied
result = handler(environ, start_response)
File "/Users/anubhavjhalani/odoo10/odoo/http.py", line 1326, in __call__
return self.dispatch(environ, start_response)
File "/Users/anubhavjhalani/odoo10/odoo/http.py", line 1300, in __call__
return self.app(environ, start_wrapped)
File "/Users/anubhavjhalani/odoo-env10/lib/python2.7/site-packages/werkzeug/wsgi.py", line 599, in __call__
return self.app(environ, start_response)
File "/Users/anubhavjhalani/odoo10/odoo/http.py", line 1482, in dispatch
odoo.registry(db).check_signaling()
File "/Users/anubhavjhalani/odoo10/odoo/__init__.py", line 52, in registry
return modules.registry.Registry(database_name)
File "/Users/anubhavjhalani/odoo10/odoo/modules/registry.py", line 59, in __new__
return cls.new(db_name)
File "/Users/anubhavjhalani/odoo10/odoo/modules/registry.py", line 83, in new
odoo.modules.load_modules(registry._db, force_demo, status, update_module)
File "/Users/anubhavjhalani/odoo10/odoo/modules/loading.py", line 373, in load_modules
force, status, report, loaded_modules, update_module, models_to_check)
File "/Users/anubhavjhalani/odoo10/odoo/modules/loading.py", line 270, in load_marked_modules
perform_checks=perform_checks, models_to_check=models_to_check
File "/Users/anubhavjhalani/odoo10/odoo/modules/loading.py", line 182, in load_module_graph
_load_data(cr, module_name, idref, mode, kind='data')
File "/Users/anubhavjhalani/odoo10/odoo/modules/loading.py", line 96, in _load_data
tools.convert_file(cr, module_name, filename, idref, mode, noupdate, kind, report)
File "/Users/anubhavjhalani/odoo10/odoo/tools/convert.py", line 845, in convert_file
convert_xml_import(cr, module, fp, idref, mode, noupdate, report)
File "/Users/anubhavjhalani/odoo10/odoo/tools/convert.py", line 898, in convert_xml_import
doc = etree.parse(xmlfile)
File "src/lxml/lxml.etree.pyx", line 3427, in lxml.etree.parse (src/lxml/lxml.etree.c:85131)

File "src/lxml/parser.pxi", line 1803, in lxml.etree._parseDocument (src/lxml/lxml.etree.c:124287)

File "src/lxml/parser.pxi", line 1823, in lxml.etree._parseFilelikeDocument (src/lxml/lxml.etree.c:124599)

File "src/lxml/parser.pxi", line 1718, in lxml.etree._parseDocFromFilelike (src/lxml/lxml.etree.c:123258)

File "src/lxml/parser.pxi", line 1139, in lxml.etree._BaseParser._parseDocFromFilelike (src/lxml/lxml.etree.c:117808)

File "src/lxml/parser.pxi", line 573, in lxml.etree._ParserContext._handleParseResultDoc (src/lxml/lxml.etree.c:110510)

File "src/lxml/parser.pxi", line 683, in lxml.etree._handleParseResult (src/lxml/lxml.etree.c:112276)

File "src/lxml/parser.pxi", line 613, in lxml.etree._raiseParseError (src/lxml/lxml.etree.c:111124)

XMLSyntaxError: Extra content at the end of the document, line 7, column 1

我错过了什么吗?此错误来自 user_groups.xml。

最佳答案

一般而言,与经理相比,用户的访问权限有限。所以manager有更多的root访问权限。

我已经更新了它,所以请尝试使用以下代码:

<record model="ir.module.category" id="module_management">
<field name="name">Demo module access</field>
<field name="description">User access level for this module</field>
<field name="sequence">3</field>
</record>

<record id="group_user" model="res.groups">
<field name="name">User</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
<field name="category_id" ref="user_access_rights_demo.module_management"/>
</record>

<record id="group_manager" model="res.groups">
<field name="name">Manager</field>
<field name="implied_ids" eval="[(4, ref('user_access_rights_demo.group_user'))]"/>
<field name="category_id" ref="user_access_rights_demo.module_management"/>
<field name="users" eval="[(4, ref('base.user_root'))]"/>
</record>

否则你的代码对我来说没问题。

注意

这两个文件 .xml 和 .csv 必须在 __manifest__.py 中列出,因为给出了其他 View 文件。类似的东西,

'data': [
'security/user_groups.xml',
'security/ir.model.access.csv',
]

之后,重启Odoo服务并升级simcard_simcard模块。

关于xml - Odoo 10 :Creating Security rules for custom module,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52428348/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com