We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 768433a + 04ab9e5 commit a017a65Copy full SHA for a017a65
fieldservice/models/fsm_category.py
@@ -15,7 +15,7 @@ class FSMCategory(models.Model):
15
name = fields.Char(required="True")
16
full_name = fields.Char(compute="_compute_full_name", store=True, recursive=True)
17
parent_id = fields.Many2one("fsm.category", string="Parent", index=True)
18
- parent_path = fields.Char(index=True)
+ parent_path = fields.Char(index=True, unaccent=False)
19
child_id = fields.One2many("fsm.category", "parent_id", "Child Categories")
20
color = fields.Integer("Color Index", default=10)
21
description = fields.Char()
0 commit comments