mirror of
https://github.com/frappe/erpnext.git
synced 2026-03-06 03:52:15 +00:00
Merge pull request #32725 from ernestoruiz89/patch-10
fix: add translate function on remark text on asset_value_adjustment.py
This commit is contained in:
@@ -61,7 +61,9 @@ class AssetValueAdjustment(Document):
|
||||
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 = {
|
||||
|
||||
Reference in New Issue
Block a user