1

我想在树视图中的“创建”按钮之前或之后添加一个按钮,该按钮调用另一个视图的操作。

但是当我尝试标题标签在 xml 中无法在 odoo 的标题中添加按钮时。

4

1 回答 1

2

您需要扩展ListView.buttonsQWEB 模板。

定义一个 QWEB 模板,在该模板下static/src/xml添加按钮:

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

<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 == 'model_name'" class="oe_button oe_my_button oe_highlight" type="button">My Button</button>
        </t>
    </t>
</template>

用于JavaScript定义按钮的逻辑(在下创建文件static/src/js):

openerp.module_name = 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'
        });
    }
});
}

定义一个将添加模块资产(module_name_view.xml)的新视图:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
      <template id="assets_backend_module_name" name="module_name assets" inherit_id="web.assets_backend">
        <xpath expr="." position="inside">
            <script type="text/javascript" src="/module_name/static/src/js/script.js"></script>
        </xpath>
    </template>
</data>

编辑__openerp__.py并添加以下部分:

'data': [
    'module_name_view.xml',
    ...
],
'qweb': ['static/src/xml/*.xml'],

查看Building Interface Extensions了解更多详细信息。

于 2016-08-12T14:49:46.537 回答