Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • G generic-addons
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 20
    • Issues 20
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 3
    • Merge requests 3
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • crnd-opensource
  • generic-addons
  • Issues
  • #29

Closed
Open
Created May 26, 2021 by Dmytro Katyukha@katyukhaOwner

Odoo 14.0 chatter cleanup

In Odoo 14.0, the way to attach chatter to model was changed.

In previous version of Odoo, we were used following way to add chatter to model:

<div class="oe_chatter">
    <field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>
    <field name="activity_ids" widget="mail_activity"/>
    <field name="message_ids" widget="mail_thread"/>
</div>

But, in Odoo 14.0, chatter could be added without specification of widget for each field

<div class="oe_chatter">
    <field name="message_follower_ids"/>
    <field name="activity_ids"/>
    <field name="message_ids" options="{'post_refresh': 'recipients'}"/>
</div>

Thus we have to remove using widgets on chater. and possibly add opttions (if needed)

This issue affects all modules that use chatter.

Edited May 26, 2021 by Dmytro Katyukha
Assignee
Assign to
Time tracking