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
- Бухгалтерия
- Склад
- PoS
- Project
- MRP
Этот вопрос был отмечен
3506
Представления
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
РегистрацияRelated Posts | Ответы | Просмотры | Активность | |
---|---|---|---|---|
|
1
февр. 25
|
1468 | ||
Chatter looks weird in 18.0
Решено
|
|
2
дек. 24
|
2441 | |
|
0
нояб. 24
|
1294 | ||
|
3
мая 24
|
4659 | ||
|
0
янв. 25
|
2660 |
<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?