Dear Odoo Experts, 
Can you please guide me how can I add a field to chatter
just like we use to add send a message field. 
My requirement is to add a selection field in chatter so the user select value from the selection field and send a message directly instead of typing message.
 
TIA
Odoo is the world's easiest all-in-one management software.
 It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
            
                4066
                
                    Visualizzazioni
                
            
        
    Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati| Post correlati | Risposte | Visualizzazioni | Attività | |
|---|---|---|---|---|
|  | 1 feb 25  | 2255 | ||
| 
            
                Chatter looks weird in 18.0
            
            
                    Risolto
            
         |  | 2 dic 24  | 3346 | |
|  | 0 nov 24  | 7594 | ||
|  | 3 ott 25  | 5576 | ||
|  | 0 gen 25  | 3249 | 
 
                        
<record id="res_partner_inherited_for_mail" model="ir.ui.view">
<field name="name">res.partner.mail</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_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="phone"/>
<field name="email"/>
</div>
</xpath>
</field>
</record>
Thank you @Meet for responding. Should I use the same code in xml after inheriting the res.partner model?