Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
3 Antworten
20660 Ansichten

I would like to remove the editable attribute from this view element <tree string="Sales Order Lines" editable="bottom"> in my custom module.

I do not want to replace the whole tree element for the sake of removing the attribute.

How can I remove the editable attribute from the element above?



Avatar
Verwerfen
Beste Antwort

please try this
<record id="view_order_line_form_editable_list" model="ir.ui.view">
<field name="name">sale.order.line.form.editable.list</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='order_line']/tree" position="attributes">
<attribute name="editable"/>
</xpath>
</field>
</record>

Avatar
Verwerfen
Beste Antwort

@Ahmed Ababneh

You could do it like this:

<xpath expr="//form/field[@name='order_line']/tree" position="attributes">
    <attribute name="editable">top</attribute>
</xpath>


Avatar
Verwerfen
Beste Antwort

You can override fields_view_get method for that object. Get the 'arch' by calling super method and remove the "editable" attrs from tree view. You will have to use python lxml packages and use etree to convert the arch into xml. You will get lots of examples in odoo addons of overriding fields_view_get.

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
0
Juni 22
13
2
Juni 25
515
1
März 25
1178
0
Nov. 24
1417
2
Sept. 24
4370