尝试在odoo14中安装新模块时出错

Error when trying to install my new module in odoo14

提问人:LAHCEN AGLAGAL 提问时间:4/14/2022 更新时间:4/15/2022 访问量:197

问:

尝试安装我的新应用程序时,我收到休耕错误:

文件“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>
蟒蛇 XML ODOO-14

评论

1赞 Abdoulaye BARRY 4/15/2022
请从视图发送所有代码。有错误拼写错误。
0赞 Community 4/15/2022
请澄清您的具体问题或提供其他详细信息以准确说明您的需求。正如目前所写的那样,很难确切地说出你在问什么。

答:

0赞 Waleed Mohsen 4/15/2022 #1

我可以在您的帖子 xml 中看到 p 标签中的问题,该属性不正确。你写的classclas

 <p clas="oe_view_nocontent_create">
      create your first patient!
 </p>

它应该是:

 <p class="oe_view_nocontent_create">
     create your first patient!
 </p>