Skip to content

Commit

Permalink
[FIX] partner_contact_department: Add unaccent=False to parent_path f…
Browse files Browse the repository at this point in the history
…ield to prevent warning log
  • Loading branch information
victoralmau committed Feb 21, 2024
1 parent 08730b9 commit 31f9e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partner_contact_department/models/res_partner.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ class ResPartnerDepartment(models.Model):
child_ids = fields.One2many(
"res.partner.department", "parent_id", "Child departments"
)
parent_path = fields.Char(index=True)
parent_path = fields.Char(index=True, unaccent=False)

0 comments on commit 31f9e9c

Please sign in to comment.