答案 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'],
}