如何禁用附件窗体视图odoo11中的清除按钮?

时间:2019-02-13 12:57:55

标签: odoo odoo-11

我尝试禁用附件表格中的清除按钮。 我认为这是js代码。我在其中搜索了一些js代码,但没有找到。

有关此问题的任何提示?

enter image description here

这是清除按钮的图像

2 个答案:

答案 0 :(得分:1)

如果要在Odoo中删除整个Binary字段小部件的按钮,则可以“扩展”该小部件的QWeb模板,即:

<t t-name="FieldBinaryFile">
    <a t-if="widget.mode === 'readonly'" href="javascript:void(0)" class="o_form_uri"/>

    <div t-if="widget.mode !== 'readonly'" class="o_field_binary_file">
        <input type="text" class="o_input"
            readonly="readonly"
            t-att-name="widget.name"
            t-att-tabindex="widget.attrs.tabindex"
            t-att-autofocus="widget.attrs.autofocus"/>

        <button type="button" class="btn btn-sm btn-primary o_select_file_button" title="Select">Upload your file</button>
        <button type="button" class="btn btn-sm btn-default fa fa-pencil o_select_file_button" title="Select"/>
        <button type="button" class="btn btn-sm btn-default fa fa-trash-o o_clear_file_button" title="Clear"/>

        <span class="o_form_binary_progress">Uploading...</span>
        <t t-call="HiddenInputFile">
            <t t-set="fileupload_id" t-value="widget.fileupload_id"/>
            <t t-set="fileupload_style" t-translation="off">overflow-x: hidden</t>
        </t>
    </div>
</t>

您可以扩展QWeb模板,但必须将其加载到清单文件中的键qweb下。

xml文件,通常位于/ static / src / xml中的模块中

<templates>
    <t t-name="web.FieldBinaryFile" t-extend="base.FieldBinaryFile">
        <t t-jquery="button[title='Clear']"
            t-operation="replace" />
    </t>
</templates>

清单的一部分

{
    'name': 'remove button in binary widget',
    # and so on
    'depends': [
        'base',
    ],
    'qweb': [
        'static/src/xml/remove_button.xml'
    ],
    # and so on
}

答案 1 :(得分:1)

另一种仅扩展此表单视图的方法是在填充字段时将字段动态设置为只读。

<record id="view_attachment_form" model="ir.ui.view">
    <field name="name">disable remove button if filled</field>
    <field name="model">ir.attachment</field>
    <field name="inherit_id" ref="base.view_attachment_form" />
    <field name="arch" type="xml">
        <field name="datas" position="attributes">
            <attribute name="attrs">{'invisible':[('type','=','url')], 'readonly':[('datas', '!=', False)]}</attribute>
        </field>
    </field>
</record>

以及原始视图的一部分:

<sheet>
    <label for="name" class="oe_edit_only"/>
    <h1>
        <field name="name"/>
    </h1>
    <group>
        <group>
            <field name="type"/>
            <field name="datas" filename="datas_fname" attrs="{'invisible':[('type','=','url')]}"/>
            <field name="datas_fname" invisible="1" attrs="{'invisible':[('type','=','url')]}" class="oe_inline oe_right"/>
    <!-- and so on -->