Odoo 10:如何为我的自定义模块隐藏导入按钮?

时间:2018-10-15 12:28:50

标签: xml import odoo oncreate

我创建了一个自定义模块,我想隐藏创建和导入按钮,直到现在我仍然可以隐藏创建按钮,但是我无法使用类似的代码隐藏导入按钮。下面是我的代码:

<?xml version="1.0" encoding="UTF-8"?>

<templates id="template" xml:space="preserve">

    <t t-extend="ListView.buttons">

           <t t-jquery="button.o_list_button_add" t-operation="replace">

                <t t-if="widget.model=='simcard.simcard'">

                    <button class="btn btn-sm btn-default sync_button" type="button">Sync</button>
                </t> 

           </t>

            <t t-jquery=".btn.btn-sm.btn-default.o_list_button_import" t-operation="replace">

                <t t-if="widget.model=='simcard.simcard'">


                </t>
            </t> 

    </t>

</templates>

以上代码隐藏“创建”按钮,但不隐藏“导入”按钮。我可以在代码中进行哪些更改以隐藏“导入”按钮?

2 个答案:

答案 0 :(得分:1)

您可以像这样完成它:

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-extend="ListView.buttons">
        <t t-jquery="button.o_list_button_add" t-operation="before">
            <t t-if="widget.model=='simcard.simcard'">
                <t t-set="widget.options.addable" t-value="false"/>
                <t t-set="widget.options.import_enabled" t-value="false"/>
                <button class="btn btn-sm btn-default sync_button" type="button">Sync</button>
            </t>
        </t>
    </t>
</templates>

答案 1 :(得分:0)

此代码对我有用:

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-extend="ListView.buttons">
        <t t-jquery="button.o_list_button_add" t-operation="replace">
            <t t-if="widget.model=='simcard_piavita.simcard_piavita'">
                <t t-set="widget.options.addable" t-value="false"/>
                <t t-set="widget.options.import_enabled" t-value="false"/>
                <button class="btn btn-sm btn-default sync_button" type="button">Sync</button>
            </t>
        </t>
    </t>
</templates>