Odoo Mindscape. Understand Odoo faster. Explore modules, fields, dependencies and version differences in one place instead of digging through the source code.
Module: Discuss
Entity: res.users
Compute Method: _compute_im_status
| Inputs | Method | Outputs |
|---|---|---|
|
+ for user in self: + user.im_status = ( + "offline" + if user.presence_ids.status in ["offline", False] + else user.manual_im_status or user.presence_ids.status + ) |
|
