Skip to content

Commit a017a65

Browse files
committed
Merge PR #1317 into 16.0
Signed-off-by brian10048
2 parents 768433a + 04ab9e5 commit a017a65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fieldservice/models/fsm_category.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class FSMCategory(models.Model):
1515
name = fields.Char(required="True")
1616
full_name = fields.Char(compute="_compute_full_name", store=True, recursive=True)
1717
parent_id = fields.Many2one("fsm.category", string="Parent", index=True)
18-
parent_path = fields.Char(index=True)
18+
parent_path = fields.Char(index=True, unaccent=False)
1919
child_id = fields.One2many("fsm.category", "parent_id", "Child Categories")
2020
color = fields.Integer("Color Index", default=10)
2121
description = fields.Char()

0 commit comments

Comments
 (0)