Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
3448 Tampilan

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

Avatar
Buang
Jawaban Terbai

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

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
0
Okt 25
3
0
Okt 25
186
2
Okt 25
338
2
Sep 25
702
1
Sep 25
921