我需要将“Powered by Odoo”页脚中的“Powered”更改为“Made”, 因此我的Odoo(以前的OpenERP)版本8.0-aab3d9f的页脚将是“由Odoo制造”
任何想法??
答案 0 :(得分:18)
您可以创建一个依赖于 web 模块的新模块,而不是直接更改odoo的核心(不受欢迎)。 然后,您可以在Web模块中从 webclient_templates.xml 扩展模板 web.menu_secondary ,如下所示:
- > _ _openerp__.py文件:
{
'name': "My Module",
# for the full list
'category': 'Web',
# any module necessary for this one to work correctly
'depends': ['web'],
# always loaded
'data': ['templates.xml'],
'demo': [],
}
- > templates.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<template id="menu_secondary" inherit_id="web.menu_secondary">
<div class="oe_footer" position="replace">
<div class="oe_footer">
Made by <a href="http://www.odoo.com" target="_blank"><span>Odoo</span></a>
</div>
</div>
</template>
</data>
</openerp>
答案 1 :(得分:2)
首先转到您的Odoo网络模块并打开以下文件。
addons => web => views => webclient_templates.xml
现在找到此标记<div class="oe_footer">
并将其编辑为
<div class="oe_footer">
Made by <a href="http://www.openerp.com" target="_blank"><span>Odoo</span></a>
</div>
保存并刷新浏览器。希望你得到你想要的东西。
答案 2 :(得分:0)