如何覆盖Odoo 11中的customize_show属性?

时间:2018-01-23 16:05:07

标签: xml odoo odoo-11

模块<template id="footer_default" inherit_id="website.footer_custom" customize_show="True" name="Automatic Footer"> <xpath expr="//div[@id='footer']" position="replace"> ... </xpath> </template> 有以下模板:

customize_show

他们正在设置<template id="footer_default" inherit_id="website.footer_custom" customize_show="False" active="False" name="Automatic Footer"> </template> 属性,我想在我的模块中将其覆盖为false,以摆脱自定义菜单中的选项。

我尝试了这个以及其他几种方式:

my_module.footer_default

但我想问题是我的ZipFile因此我无法以这种方式覆盖它。

1 个答案:

答案 0 :(得分:2)

您可以尝试直接更新模板的ir.ui.view记录:

<record id="website.footer_default" model="ir.ui.view">
    <field name="customize_show" eval="False"/>
</record>