提问人:LAHCEN AGLAGAL 提问时间:4/14/2022 更新时间:4/15/2022 访问量:197
尝试在odoo14中安装新模块时出错
Error when trying to install my new module in odoo14
问:
尝试安装我的新应用程序时,我收到休耕错误:
文件“C:\odoo14\server\odoo\http.py”,第 317 行,_handle_exception 从new_cause中筹集exception.with_traceback(无) odoo.tools.convert.ParseError:解析文件时:/c:/odoo14/server/odoo/addons/pfe/views/pfe.xml:9,靠近
<field name="name">Patients</field>
<field name="res_model">hospital.patient</field>
<field name="type">ir.actions.act_window</field>
<field name="view_mode">tree,form</field>
<field name="help" type="html">
<p clas="oe_view_nocontent_create">
create your first patient!
</p>
</field>
</record>
答:
0赞
Waleed Mohsen
4/15/2022
#1
我可以在您的帖子 xml 中看到 p 标签中的问题,该属性不正确。你写的class
clas
<p clas="oe_view_nocontent_create">
create your first patient!
</p>
它应该是:
<p class="oe_view_nocontent_create">
create your first patient!
</p>
评论