Skip to content

Commit

Permalink
Merge pull request #32725 from ernestoruiz89/patch-10
Browse files Browse the repository at this point in the history
fix: add translate function on remark text on  asset_value_adjustment.py
  • Loading branch information
deepeshgarg007 authored Oct 28, 2022
2 parents 25eac80 + 8f0e63c commit 92f2d9f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ def make_depreciation_entry(self):
je.naming_series = depreciation_series
je.posting_date = self.date
je.company = self.company
je.remark = "Depreciation Entry against {0} worth {1}".format(self.asset, self.difference_amount)
je.remark = _("Depreciation Entry against {0} worth {1}").format(
self.asset, self.difference_amount
)
je.finance_book = self.finance_book

credit_entry = {
Expand Down

0 comments on commit 92f2d9f

Please sign in to comment.