From fb37da4ac092a35eee8b924573b70ee0fe6a0694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Thu, 16 Jul 2020 23:19:23 +0800 Subject: [PATCH] Fixed a typo in the cash account 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 2224841..97a55eb 100644 --- a/accounting/views/__init__.py +++ b/accounting/views/__init__.py @@ -268,7 +268,7 @@ ORDER BY "period": period, "reports": ReportUrl(cash=current_subject, period=period), "shortcut_subjects": [x for x in subjects if x.code in settings.ACCOUNTING["CASH_SHORTCUT_SUBJECTS"]], - "all_sibjects": [x for x in subjects if x.code not in settings.ACCOUNTING["CASH_SHORTCUT_SUBJECTS"]], + "all_subjects": [x for x in subjects if x.code not in settings.ACCOUNTING["CASH_SHORTCUT_SUBJECTS"]], })