test: fix payment reco tests
diff --git a/erpnext/controllers/accounts_controller.py b/erpnext/controllers/accounts_controller.py
index eec58e8..3dadd46 100644
--- a/erpnext/controllers/accounts_controller.py
+++ b/erpnext/controllers/accounts_controller.py
@@ -2273,11 +2273,11 @@
 	)
 
 	if party_type == "Customer":
-		q = q.select(payment_entry.paid_from_account_currency)
+		q = q.select((payment_entry.paid_from_account_currency).as_("currency"))
 		q = q.select(payment_entry.paid_from)
 		q = q.where(payment_entry.paid_from.isin(party_account))
 	else:
-		q = q.select(payment_entry.paid_to_account_currency)
+		q = q.select((payment_entry.paid_to_account_currency).as_("currency"))
 		q = q.select(payment_entry.paid_to)
 		q = q.where(payment_entry.paid_to.isin(party_account))