我创建了一个自定义的 Odoo 模块,当我想升级它时它显示解析错误

I created a custom Odoo module and it's showing parse error when i want to upgrade it

这是我收到的错误消息。

ValueError: Invalid field 'view_type' on model 'ir.actions.act_window'
odoo.tools.convert.ParseError: while parsing file:/c:/users/shaileshbhai/pycharmprojects/odoodev/extra_addons/demo_hospital/view/patient.xml:15, near
<record id="patient_action_new" model="ir.actions.act_window">
            <field name="name">patient name</field>
            <field name="res_model">hospital.patient</field>
            <field name="view_type">form</field>
            <field name="view_mode">form</field>
        </record> 

字段 view_type 在最新的 Odoo 版本之一中被删除。只需将其从您的操作定义中删除即可。