Revised the documentation in the page parameters and the report in the ledger and income and expenses log.
This commit is contained in:
parent
7b10eb68bc
commit
7083f22577
@ -280,7 +280,7 @@ class PageParams(BasePageParams):
|
|||||||
self.brought_forward: ReportEntry | None = brought_forward
|
self.brought_forward: ReportEntry | None = brought_forward
|
||||||
"""The brought-forward entry."""
|
"""The brought-forward entry."""
|
||||||
self.entries: list[ReportEntry] = entries
|
self.entries: list[ReportEntry] = entries
|
||||||
"""The entries."""
|
"""The report entries."""
|
||||||
self.total: ReportEntry | None = total
|
self.total: ReportEntry | None = total
|
||||||
"""The total entry."""
|
"""The total entry."""
|
||||||
self.period_chooser: IncomeExpensesPeriodChooser \
|
self.period_chooser: IncomeExpensesPeriodChooser \
|
||||||
@ -410,7 +410,7 @@ class IncomeExpenses(BaseReport):
|
|||||||
self.__brought_forward: ReportEntry | None = collector.brought_forward
|
self.__brought_forward: ReportEntry | None = collector.brought_forward
|
||||||
"""The brought-forward entry."""
|
"""The brought-forward entry."""
|
||||||
self.__entries: list[ReportEntry] = collector.entries
|
self.__entries: list[ReportEntry] = collector.entries
|
||||||
"""The log entries."""
|
"""The report entries."""
|
||||||
self.__total: ReportEntry | None = collector.total
|
self.__total: ReportEntry | None = collector.total
|
||||||
"""The total entry."""
|
"""The total entry."""
|
||||||
|
|
||||||
|
@ -241,7 +241,7 @@ class PageParams(BasePageParams):
|
|||||||
:param period: The period.
|
:param period: The period.
|
||||||
:param has_data: True if there is any data, or False otherwise.
|
:param has_data: True if there is any data, or False otherwise.
|
||||||
:param brought_forward: The brought-forward entry.
|
:param brought_forward: The brought-forward entry.
|
||||||
:param entries: The ledger entries.
|
:param entries: The report entries.
|
||||||
:param total: The total entry.
|
:param total: The total entry.
|
||||||
"""
|
"""
|
||||||
self.currency: Currency = currency
|
self.currency: Currency = currency
|
||||||
@ -364,7 +364,7 @@ class Ledger(BaseReport):
|
|||||||
self.__brought_forward: ReportEntry | None = collector.brought_forward
|
self.__brought_forward: ReportEntry | None = collector.brought_forward
|
||||||
"""The brought-forward entry."""
|
"""The brought-forward entry."""
|
||||||
self.__entries: list[ReportEntry] = collector.entries
|
self.__entries: list[ReportEntry] = collector.entries
|
||||||
"""The ledger entries."""
|
"""The report entries."""
|
||||||
self.__total: ReportEntry | None = collector.total
|
self.__total: ReportEntry | None = collector.total
|
||||||
"""The total entry."""
|
"""The total entry."""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user