odoo xml解析错误

来源:互联网 发布:本西蒙斯数据 编辑:程序博客网 时间:2024/05/16 04:44
<data><header>    <button name="action_open" type="object"            string="手动开启"            class="oe_highlight"            attrs="{'invisible': [ ('status','=',True)]}" />    <button name="action_close" type="object"            string="手动关闭"             attrs="{'invisible': [ ('status','=',False)]}" />
在安装模块时一直报错指向此处,header前边多出data标签,但是在代码中却不存在,
找了很久,发现header写错位置,卸载了from外边,导致安装错误。

<field name="arch" type="xml">    <header>            <button name="action_open" type="object"                    string="手动开启"                    class="oe_highlight"                    attrs="{'invisible': [ ('status','=',True)]}" />            <button name="action_close" type="object"                    string="手动关闭"                     attrs="{'invisible': [ ('status','=',False)]}" />        </header>    <form string="Course Form">

这个错误在升级的时候不会出现,但是在安装的时候会报错。
原创粉丝点击