Skip to content

Commit

Permalink
[FIX] helpdesk_mgmt_activity: res_id field default required is False
Browse files Browse the repository at this point in the history
  • Loading branch information
geomer198 committed Oct 11, 2024
1 parent c9a2e29 commit fa48d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk_mgmt_activity/models/helpdesk_ticket.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class HelpdeskTicket(models.Model):

can_create_activity = fields.Boolean(related="team_id.is_set_activity")
res_model = fields.Char(string="Source Document Model", index=True)
res_id = fields.Integer(string="Source Document", required=True, index=True)
res_id = fields.Integer(string="Source Document", index=True)

record_ref = fields.Reference(
selection="_referenceable_models",
Expand Down

0 comments on commit fa48d4a

Please sign in to comment.