You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i try to group by stage_id in the helpdesk.ticket model throws the following error:
File "/opt/odoo/custom/src/odoo/odoo/models.py", line 2443, in read_group
result = self._read_group_raw(domain, fields, groupby, offset=offset, limit=limit, orderby=orderby, lazy=lazy)
File "/opt/odoo/custom/src/odoo/odoo/models.py", line 2612, in _read_group_raw
result = self._read_group_fill_results(
File "/opt/odoo/custom/src/odoo/odoo/models.py", line 2014, in _read_group_fill_results
groups = group_expand(self, groups, domain, order)
File "/opt/odoo/auto/addons/helpdesk_mgmt/models/helpdesk_ticket.py", line 26, in _read_group_stage_ids
default_team_id = self.default_get(["team_id"])["team_id"]
Exception
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/opt/odoo/custom/src/odoo/odoo/http.py", line 654, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/opt/odoo/custom/src/odoo/odoo/http.py", line 301, in _handle_exception
raise exception.with_traceback(None) from new_cause
KeyError: 'team_id'
Module
helpdesk_mgmt
Describe the bug
When i try to group by stage_id in the helpdesk.ticket model throws the following error:
Line in code
To Reproduce
In version 15.0, go to ticket tree view and try to group by stage_id
Expected behavior
Tickets grouped by stage_id
Regards,
The text was updated successfully, but these errors were encountered: