Skip to content

Commit

Permalink
Add fix to spp_area
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalesedwin1123 committed Jan 10, 2025
1 parent 29d76d8 commit 329eacc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spp_area/models/area.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class OpenSPPArea(models.Model):
complete_name = fields.Char(compute="_compute_complete_name", recursive=True, translate=True)
name = fields.Char(translate=True, compute="_compute_name", store=True)
draft_name = fields.Char(required=True, translate=True)
parent_path = fields.Char(index=True)
parent_path = fields.Char(index=True, unaccent=False)
code = fields.Char()
altnames = fields.Char("Alternate Name")
level = fields.Integer(help="This is the area level for importing")
Expand Down

0 comments on commit 329eacc

Please sign in to comment.