由Odoo页脚提供支持

时间:2015-01-05 13:09:54

标签: odoo openerp-8

我需要将“Powered by Odoo”页脚中的“Powered”更改为“Made”, 因此我的Odoo(以前的OpenERP)版本8.0-aab3d9f的页脚将是“由Odoo制造”

任何想法??

3 个答案:

答案 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)

您可以使用网站模块的HTML编辑器更改网站的版权页脚:

Customize > HTML Editor

网站HTML编辑器页脚版权

Website HTML Editor Footer Copyright

由于这是一种快速而干净的方式来完成您的要求,但更改将直接保存到工作数据库中。如果要在不同的数据库中复制更改,最好的方法是创建自定义模块。