Skip to content

Commit

Permalink
fix: municipality name in urban docs for cards (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienCorny authored Jan 9, 2025
1 parent fc501d5 commit 6b57ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/gn_module_zh/model/cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ def __init__(self, id_area, id_doc_type, id_cors, remark):

def __str__(self):
return {
"commune": DB.session.get(LAreas, self.id_area).id_area,
"commune": DB.session.get(LAreas, self.id_area).area_name,
"type_doc": Utils.get_mnemo(self.id_doc_type),
"type_classement": [
Utils.get_mnemo(
Expand Down

0 comments on commit 6b57ac7

Please sign in to comment.