From dae002387f01d0cb279d75793b927948a863e810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Sat, 18 Jul 2020 08:20:43 +0800 Subject: [PATCH] Fixed the report URL parameter used in the ledger summary in the accounting application. --- accounting/views/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounting/views/__init__.py b/accounting/views/__init__.py index a564c50..1eca81e 100644 --- a/accounting/views/__init__.py +++ b/accounting/views/__init__.py @@ -497,7 +497,7 @@ def ledger_summary(request, subject_code): "records": pagination.records, "pagination": pagination, "current_subject": current_subject, - "reports": ReportUrl(cash=current_subject), + "reports": ReportUrl(ledger=current_subject), "subjects": subjects, })