删除合作伙伴表单上的会计选项卡(页面)

时间:2014-02-11 19:01:23

标签: forms customization openerp accounting

我试图删除Partner上的Accounting选项卡,但我无法“隐藏”Accounting选项卡。是否有特定文件,我应该使用以下代码(或类似):

        <page string="Sales & Purchases" position="attributes">
            <attribute name='invisible'>1</attribute> 
        </page>

我正在尝试将其放入accounting中的partner_view.xml中。我迷失了方向,并希望得到任何帮助。

提前多多感谢。 Matias的

1 个答案:

答案 0 :(得分:0)

永远不要在主插件模块中进行更改。更好地创建定制模块。并继承base.view_patner_form并将其添加到xml中,

    <xpath expr="//page[@string='Accounting']" position="attributes">
        <attribute name='invisible'>True</attribute> 
    </xpath>

供您参考,如果您想知道如何创建自定义模块,请检查此After inheriting CRM-Lead unable to hide or add fields to my Custom module in Openerp

希望这会对你有所帮助。