Skip to Content
Menú
This question has been flagged
1 Respondre
1365 Vistes

I am using odoo v15.0, I want to hide the messaging declaring the changes in the form but still showing the log note to let the user use it as a reference.
I need a help as I tried but both are hidden rarther than the messages only.

Avatar
Descartar

I used the this code it's working for me try it hope it will work for you also.

<record id="bom_data_form_view_inh_chatter" model="ir.ui.view">
<field name="name">bom.data.inherit.form</field>
<field name="model">bom.data</field>
<field name="inherit_id" ref="desktop_products.view_bom_data_form"/>
<field name="arch" type="xml">
<xpath expr="//sheet" position="after">
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="activity_ids" widget="mail_activity"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</xpath>
</field>
<field name="groups_id" eval="[(6, 0, [ref('desktop_products.group_administrator')])]"/>
</record>

Enhance your Odoo mail chatter experience by dynamically controlling the visibility of key buttons based on user preferences.
With this app, administrators can configure visibility settings for the most commonly used buttons in the chatter interface, such as "Send Message", "Log Note", "Activities", and more. Tailor the interface to individual users or specific models, ensuring a streamlined, role-based user experience.
https://apps.odoo.com/apps/modules/16.0/mh_hide_chatter_view_buttons

Related Posts Respostes Vistes Activitat
1
de febr. 25
1500
2
de des. 24
2471
0
de nov. 24
1458
3
de maig 24
4700
1
d’abr. 24
1342