Skip to Content
Menu
This question has been flagged
1 Atsakyti
3477 Rodiniai

? how can i hide report actions and make it appears just in  work  flow specific  state 

Portretas
Atmesti
Best Answer

Hi,

Try this code


<record id="view_custom_model_form" model="ir.ui.view">
<field name="name">custom.model.form</field>
<field name="model">custom.model</field>
    <field name="inherit_id" ref="base.view_partner_form" />
    <field name="arch" type="xml">
            <!-- Modify the existing report actions -->
<xpath expr="//button[@name='action_print_report']" position="attributes">
<attribute name="groups">module.group_report_access</attribute>
<attribute name="attrs">{"invisible": [["state", "!=", "specific_state"]]}</attribute>

                <!-- You can add your own domains and default conditions under the attribute -->
            </xpath>
    </field>
</record>

Hope it helps

Portretas
Atmesti
Related Posts Replies Rodiniai Veikla
0
spal. 25
3
0
spal. 25
280
2
spal. 25
378
2
rugs. 25
729
1
rugs. 25
952