如何在树视图中添加此按钮?
此代码在 library/static/src/js/script.js
openerp.library = function(instance) {
instance.web.ListView.include({
load_list: function(data) {
this._super(data);
if (this.$buttons) {
this.$buttons.find('.oe_my_button').off().click(this.proxy('do_the_job'));
}
},
do_the_job: function() {
this.do_action({
name: _t("View name"),
type: "ir.actions.act_window",
res_model: "object",
domain: [],
views: [
[false, "list"],
[false, "tree"]
],
target: 'new',
context: {},
view_type: 'list',
view_mode: 'list'
});
}
});
}
此代码在 library/static/src/xml/library_view.xml
<template xml:space="preserve">
<t t-extend="ListView.buttons">
<t t-jquery="button.oe_list_add" t-operation="after">
<button t-if="widget.dataset.model == 'inventory'" class="oe_button oe_my_button oe_highlight" type="button">My Button</button>
</t>
</t>
</template>
在我的openerp .py
'qweb': ['static/src/xml/library_view.xml'],