Skip to Content
Menu
This question has been flagged
1 Reply
1368 Views

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
Discard

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 Replies Views Activity
1
Feb 25
1502
2
Dec 24
2476
0
Nov 24
1480
3
May 24
4708
1
Apr 24
1346