如何在odoo中添加按钮?

时间:2016-08-08 07:28:50

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

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

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

1 个答案:

答案 0 :(得分:2)

您需要扩展ListView.buttons QWEB模板。

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

<?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了解更多详情。