Skip to content

Commit

Permalink
[FIX] partner_multi_relation: fix name search on relation
Browse files Browse the repository at this point in the history
  • Loading branch information
NL66278 committed Apr 18, 2024
1 parent 2e15509 commit bf8b8cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partner_multi_relation/models/res_partner_relation_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ResPartnerRelationAll(models.Model):
_order = "this_partner_id, type_selection_id, date_end desc, date_start desc"
_rec_names_search = [
"this_partner_id.name",
"type_selection_id.display_name",
"type_selection_id.name",
"other_partner_id.name",
]

Expand Down

0 comments on commit bf8b8cc

Please sign in to comment.