Obey currency filter in financial statement prints #pdd (#13648)

diff --git a/erpnext/accounts/report/financial_statements.html b/erpnext/accounts/report/financial_statements.html
index 07ed9af..38fa3ce 100644
--- a/erpnext/accounts/report/financial_statements.html
+++ b/erpnext/accounts/report/financial_statements.html
@@ -22,9 +22,9 @@
 <h2 class="text-center">{%= __(report.report_name) %}</h2>
 <h3 class="text-center">{%= filters.company %}</h3>
 <h3 class="text-center">{%= filters.fiscal_year %}</h3>
-<h5 class="text-center">{%=  __("Currency") %} : {%= erpnext.get_currency(filters.company) %} </h4>
+<h5 class="text-center">{%=  __("Currency") %} : {%= filters.presentation_currency || erpnext.get_currency(filters.company) %} </h4>
 {% if (filters.from_date) { %}
-	<h4 class="text-center">{%= dateutil.str_to_user(filters.from_date) %} - {%= dateutil.str_to_user(filters.to_date) %}</h3>
+	<h4 class="text-center">{%= frappe.datetime.str_to_user(filters.from_date) %} - {%= frappe.datetime.str_to_user(filters.to_date) %}</h3>
 {% } %}
 <hr>
 <table class="table table-bordered">
@@ -51,7 +51,7 @@
 					<td class="text-right">
 						{% var fieldname = report.columns[i].field || report.columns[i].fieldname; %}
 						{% if (!is_null(row[fieldname])) { %}
-							{%= format_number(row[fieldname], null)%}
+							{%= format_currency(row[fieldname], filters.presentation_currency) %}
 						{% } %}
 					</td>
 				{% } %}
@@ -59,4 +59,4 @@
 		{% } %}
 	</tbody>
 </table>
-<p class="text-right text-muted">Printed On {%= dateutil.str_to_user(dateutil.get_datetime_as_string()) %}</p>
+<p class="text-right text-muted">Printed On {%= frappe.datetime.str_to_user(frappe.datetime.get_datetime_as_string()) %}</p>
diff --git a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py
index 5b2f5d6..c8d9857 100644
--- a/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py
+++ b/erpnext/accounts/report/profit_and_loss_statement/profit_and_loss_statement.py
@@ -19,7 +19,7 @@
 		accumulated_values=filters.accumulated_values,
 		ignore_closing_entries=True, ignore_accumulated_values_for_fy= True)
 
-	net_profit_loss = get_net_profit_loss(income, expense, period_list, filters.company)
+	net_profit_loss = get_net_profit_loss(income, expense, period_list, filters.company, filters.presentation_currency)
 
 	data = []
 	data.extend(income or [])
@@ -33,13 +33,13 @@
 
 	return columns, data, None, chart
 
-def get_net_profit_loss(income, expense, period_list, company):
+def get_net_profit_loss(income, expense, period_list, company, currency=None):
 	total = 0
 	net_profit_loss = {
 		"account_name": "'" + _("Profit for the year") + "'",
 		"account": "'" + _("Profit for the year") + "'",
 		"warn_if_negative": True,
-		"currency": frappe.db.get_value("Company", company, "default_currency")
+		"currency": currency or frappe.db.get_value("Company", company, "default_currency")
 	}
 
 	has_value = False