Skip to content

Commit

Permalink
[FIX] account_cash_deposit: fix name_get()
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-via committed Dec 28, 2024
1 parent 2ae3d17 commit a4fe282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_cash_deposit/models/account_cash_deposit.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def name_get(self):
]
)
for rec in self:
res.append((rec.id, " ".join([type2label[self.operation_type], self.name])))
res.append((rec.id, " ".join([type2label[rec.operation_type], rec.name])))
return res

def confirm_order(self):
Expand Down

0 comments on commit a4fe282

Please sign in to comment.