Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
11235 Vizualizări

I try to modify the sale order action menu like this :

<!-- Update Menu Bon de commande -->
    <record id="test" model="ir.actions.act_window">
        <field name="inherit_id" ref="sale.action_orders"/> 
        <field name="view_type">form</field>
        <field name="view_mode">tree,form,calendar,graph</field>
        <field name="res_model">sale.order</field>
        <field name="priority">17</field>
        <field name="domain" >[('state','not in',('draft','sent','cancel','manual','done','progress','waiting_date','x_approve_quotation',))]</field>
    </record>

But nothing happens ...

Help me, please

Imagine profil
Abandonează
Cel mai bun răspuns

If you want to change a menu item you don't need to do an inherit. This isn't a view.

Just remove the:

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

and change the <record id="test" model="ir.actions.act_window">` in

<record id="sale.action_orders" model="ir.actions.act_window">

If you do this you will update the exisiting menu item record with your values.

Imagine profil
Abandonează
Autor

Thanks a lot !!

Related Posts Răspunsuri Vizualizări Activitate
0
mai 15
3630
0
mar. 15
3967
1
mar. 15
4814
0
mai 25
752
2
sept. 21
7373