mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-14 18:51:21 +00:00
fix: indicate correct currency code for the payment
This commit is contained in:
@@ -1107,9 +1107,11 @@ class PaymentEntry(AccountsController):
|
|||||||
|
|
||||||
remarks = [
|
remarks = [
|
||||||
_("Amount {0} {1} {2} {3}").format(
|
_("Amount {0} {1} {2} {3}").format(
|
||||||
_(self.party_account_currency),
|
_(self.paid_to_account_currency)
|
||||||
|
if self.payment_type == "Receive"
|
||||||
|
else _(self.paid_from_account_currency),
|
||||||
self.paid_amount if self.payment_type == "Receive" else self.received_amount,
|
self.paid_amount if self.payment_type == "Receive" else self.received_amount,
|
||||||
_("received from") if self.payment_type == "Receive" else _("to"),
|
_("received from") if self.payment_type == "Receive" else _("paid to"),
|
||||||
self.party,
|
self.party,
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user