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 victoralmau committed Aug 19, 2022
1 parent 6a6cca5 commit 62b0cbb
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 62b0cbb

Please sign in to comment.