在OPENERP 7中的更多按钮中隐藏EXPORT选项

时间:2015-11-26 16:19:37

标签: openerp openerp-7

如何在特定用户组的更多按钮中隐藏EXPORT选项,以及如何在openerp 7中隐藏特定用户组的“更多”按钮。

1 个答案:

答案 0 :(得分:0)

隐藏“以更多选项导出”

在OpenERP-7

在模块中的 static / src / base.xml 下创建XML文件并添加以下代码:

<templates>
        <t t-extend="Sidebar">
            <t t-jquery="a.oe_sidebar_action_a" t-operation="replace">
                <t t-if="widget.session.uid !== 1">
                <a t-if="item.label !== 'Export'" class="oe_sidebar_action_a" t-att-title="item.title or ''" t-att-data-section="section.name" t-att-data-index="item_index" t-att-href="item.url" target="_blank">
                     <t t-raw="item.label"/>
                 </a>
                </t>
                <t t-if="widget.session.uid === 1">
                    <a class="oe_sidebar_action_a" t-att-title="item.title or ''" t-att-data-section="section.name" t-att-data-index="item_index" t-att-href="item.url" target="_blank">
                         <t t-raw="item.label"/>
                    </a>
                </t>
            </t>
        </t>
</templates>

在文件 __ openerp __。py

中添加此项
'qweb': [ 
    "static/src/base.xml", 
]

现在重新启动服务器并更新数据库并刷新页面。