@hui 先写一个qweb的xml
<?xml version="1.0" encoding="utf-8"?>
<templates t-name="custom_button_t">
<t t-extend="ListView.buttons">
<t t-jquery="div.o_list_buttons" t-operation="append" t-if="model_id.model=='login.sso'">
<!--<t t-set="foo" t-value="model_id.model"/>-->
<!--<t t-esc="foo"/>-->
<button name="custom_button" type="button" id="custom_button"
class="btn btn-primary btn-sm o_list_tender_button_create " >
<i class="fa fa-star"></i>自定义按钮
</button>
</t>
</t>
</templates>
然后在__manifest__.py 增加
'qweb': ['static/xml/mybutton_qweb.xml'],