odoo xml解析错误

版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/qq_35367612/article/details/77531203
 
 
<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">


这个错误在升级的时候不会出现,但是在安装的时候会报错。

猜你喜欢

转载自blog.csdn.net/qq_35367612/article/details/77531203