Passa al contenuto
Menu
La domanda è stata contrassegnata
1 Rispondi
1798 Visualizzazioni

In Sales Order, when we add a product on order lines, how to lock description field? so only users on group can manage to edit that field.

Avatar
Abbandona
Risposta migliore

Hi,

Just you need to inherit of order line view and need to mention group_id and then you can make the field read-only/editable.

<record model = "ir.ui.view" id = "view_product_form">


    <field name = "name"> sale.order.line </field>


    <field name="model">sale.order.line</field>


    <field name="inherit_id" ref="sale.view_order_line_tree"/>


    <field name = "groups_id" eval = "[(6, 0, [ref ('module_name.group_id')])]" />


    <field name = "arch" type = "xml">


        <xpath expr = "// field [@ name = 'name']" position = "attributes">


            <attribute name = "readonly"> 1 </attribute>


        </xpath>


    </field>


</record>


Regards

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
4
mag 16
7931
1
ago 20
3432
1
giu 23
2186
2
apr 16
5364
0
feb 16
5296