从odoo中的导出数据表单视图中删除按钮

时间:2016-06-24 04:50:19

标签: openerp odoo-8 openerp-8 odoo-9

我想在odoo中的 导出数据表单视图 hide delete button。我想隐藏的按钮也在附加图像中突出显示。

enter image description here

我会非常感激......

1 个答案:

答案 0 :(得分:1)

您需要覆盖Odoo的QWeb模板以进行此类自定义。

在mymodule / static / src / xml(例如your_customization.xml)下创建一个包含以下内容的xml:

<template>
    <t t-extend="Exists.ExportList">
        <t t-jquery="button[id|='delete_export_list']" t-operation="replace" />
    </t>
</template>

然后不要忘记在清单(__openerp__.py)中调用该文件,如

{
    # other things like author, name, data
    'qweb': ['static/src/xml/your_customization.xml'],
}