在Openerp 7登录页面上更改徽标并由OpenERP提供支持

时间:2014-05-02 08:03:36

标签: python openerp-7

我在OpenERP 7上进行自定义。 我想更改Openerp的登录页面。我想更换" Powered by OpenERP"来自ABCXYZ"当我们点击它时应该重定向到https://www.ABCXYZ.com 而且我想从我的自定义模块更改登录页面上的徽标。

我已经返回一个单独的自定义模块,我在其中对Project Module和Hr Module进行了更改,该模块工作正常。现在,在同一模块中,我想对“登录”页面进行更改。这是posibble吗?

我的 openerp .py文件是

    { 
        'name': "ABCXYZ Custom Module",
        'version': "1.0",
        'author': "ABCXYZ",
        'category': "Project Management",
        'depends': ['web'],
        'data': ['custome_module_view.xml'],
        'demo': [],
        'auto_install': True,
        'qweb': ['static/src/xml/custom.xml']

    }

我的 init .py是

import custome_module

我的static / src / xml / custom.xml文件是

<templates id="template" xml:space="preserve">
    <t t-extend="Login" >
        <t t-jquery=".oe_login" t-operation="replace">
            <div class="oe_login_footer">
                <a href="#" class="oe_login_manage_db">Manage Databases</a> |
                <a href="http://www.ABCXYZ.com" target="_blank">Powered by <span>ABCXYZ</span></a>
            </div>
        </t>
    </t>
</templates>

现在,当我创建静态文件夹结构并编写上面的代码时,我想出了 &#34;找不到处理程序&#34;例外。 你能告诉我我的错误是什么吗?

2 个答案:

答案 0 :(得分:0)

您可以在add.xml的“Web”(插件文件夹)中的base.xml中更改它们。 确切的路径是../opennerp / addons / web / static / src / xml / base.xml

你可能会在

中找到

将..更改为

<div class="oe_login_footer">
                <a href="#" class="oe_login_manage_db">Manage Databases</a> |
                <a href="http://www.ABCXYZ.com" target="_blank">Powered by <span>ABCXYZ</span></a>
</div>

和图片请放在../openerp/addons/web/static/src/img/ 您可以将图像重命名为logo2.png并将其放在那里

<div class="oe_about">. ..</div>中,您可以提供徽标的路径

答案 1 :(得分:0)

以下代码适用: -

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-extend="Login">
        <t t-jquery="div[class=oe_login_footer]" t-operation="replace">
            <div class="oe_login_footer">
                <a href="#" class="oe_login_manage_db">Manage Databases</a> |
                <a href="http://www.ABCXYZ.com" target="_blank">Powered by <span>ABCXYZ</span></a>
            </div>
        </t>
    </t>
</templates>