如何删除“创建:在odoo 8中单击搜索视图后打开的搜索视图中的选项?

问题描述 投票:0回答:3

如何删除“搜索更多”视图中出现的创建选项。 Search More

Create option

我尝试了 no_create 和一些东西,但没有帮助。有人对此有什么想法吗?

xml odoo odoo-8 openerp-8
3个回答
14
投票

many2one 小部件(默认)

选项:您可以与此小部件一起使用的其他可能选项。

  • no_quick_create - 删除创建和编辑...选项。
  • no_create_edit - 删除创建“search_value”选项。
  • no_create - no_quick_create 和 no_create_edit 组合。
  • no_open - 在读取模式下:不呈现为链接。

示例:

<field name="field_name" options="{'no_quick_create': True,    'no_create_edit' : True}"/>

很多2很多

  1. 小部件(默认)

    选项

    - no_create - remove the “Create” button.
    

    示例

    <field name="field_name" options="{'no_create': True}"/>
    
  2. many2many_tags 小部件

    选项

    no_quick_create - remove the Create and edit... option.

    no_create_edit - remove the Create "search_value" option.

    no_create - no_quick_create and no_create_edit together.

    示例

    <field name="field_name" widget="many2many_tags" options="{'no_create_edit': True}"/>
    

为了从搜索弹出窗口中删除“创建”按钮,您需要删除 它来自 ~/web/static/src/xml/base.xml 文件

有代码将此按钮添加到该搜索向导中。这 按钮有条件地添加到向导中,但

no_create:True
是 不知何故不工作。所以如果你想从每个向导中删除它 然后将其从文件中删除,否则想想如何隐藏它 有条件地字段。

<t t-name="SelectCreatePopup.search.buttons">
    <t t-if="! widget.options.disable_multiple_selection">
        <button type="button" class="oe_button oe_selectcreatepopup-search-select oe_highlight" disabled="disabled">Select</button>
    </t>
    <t t-if="!widget.options.no_create">
    <button type="button" class="oe_button oe_selectcreatepopup-search-create">Create</button>
    or </t><a class="oe_selectcreatepopup-search-close oe_bold oe_form_button_cancel" href="javascript:void(0)">Cancel</a>
</t>

0
投票

它对我不起作用,我做了一点改变:

init: function(parent, options) {
    this._super(parent, options);

    _.defaults(this.options, { initial_view: "search" });
    this.initial_ids = this.options.initial_ids;
if(parent.options && (parent.options.no_create_edit || parent.options.no_create)){
        this.options.no_create = true;
}

},

0
投票

在 Odoo 10 上测试。

在many2one小部件(默认)中,为了使“no_create”或“no_create_edit”选项生效并且在单击“搜索更多...”后不在搜索表单中显示“创建”按钮,需要应用文件“addons/web/static/src/js/views/form_common.js”中的这个“补丁”。

@@ -991,6 +991,9 @@

         _.defaults(this.options, { initial_view: "search" });
         this.initial_ids = this.options.initial_ids;
+       if(parent.options && (parent.options.no_create_edit || parent.options.no_create)) {
+               this.options.no_create = true;
+       }
     },

     open: function() {

这是@ejabu 的建议。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.