模块<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
因此我无法以这种方式覆盖它。
答案 0 :(得分:2)
您可以尝试直接更新模板的ir.ui.view
记录:
<record id="website.footer_default" model="ir.ui.view">
<field name="customize_show" eval="False"/>
</record>