Skip to content

Commit

Permalink
[12.0][FIX]fix name_get on intrastat.transaction (OCA#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-demeyer authored and alexis-via committed Mar 26, 2024
1 parent f89d184 commit 3dc7656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intrastat_product/models/intrastat_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ def name_get(self):
if this.description:
name += ' ' + this.description
name = len(name) > 55 and name[:55] + '...' or name
res.append((this.id, this.name))
res.append((this.id, name))
return res

0 comments on commit 3dc7656

Please sign in to comment.