From 8c10d42d7b4db07bd38f4a70104ebf57195eb90a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Fri, 7 Apr 2023 22:43:37 +0800 Subject: [PATCH] Added documentation to the currency and account parameters of the CSVRow class, and the pagination parameter of the PageParams class in the "accounting.report.reports.journal" module. --- src/accounting/report/reports/journal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/accounting/report/reports/journal.py b/src/accounting/report/reports/journal.py index 705058d..91ef441 100644 --- a/src/accounting/report/reports/journal.py +++ b/src/accounting/report/reports/journal.py @@ -77,6 +77,8 @@ class CSVRow(BaseCSVRow): """Constructs a row in the CSV. :param journal_entry_date: The journal entry date. + :param currency: The currency. + :param account: The account. :param description: The description. :param debit: The debit amount. :param credit: The credit amount. @@ -116,6 +118,7 @@ class PageParams(BasePageParams): """Constructs the HTML page parameters. :param period: The period. + :param pagination: The pagination. :param line_items: The line items. """ self.period: Period = period