尝试在 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(None) odoo.tools.convert.ParseError: 解析文件时:/c:/odoo14/server/odoo/addons/pfe/views/pfe.xml:9, near

        <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>

我在你的 post 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>