accrual: Load all books since args.since.
This lets the tool find and report accruals in the future.
This commit is contained in:
parent
2bd3e8b462
commit
38cea37715
2 changed files with 2 additions and 2 deletions
|
@ -740,7 +740,7 @@ def main(arglist: Optional[Sequence[str]]=None,
|
||||||
elif args.report_type is ReportType.AGING:
|
elif args.report_type is ReportType.AGING:
|
||||||
entries, load_errors, _ = books_loader.load_all()
|
entries, load_errors, _ = books_loader.load_all()
|
||||||
else:
|
else:
|
||||||
entries, load_errors, _ = books_loader.load_fy_range(args.since)
|
entries, load_errors, _ = books_loader.load_all(args.since)
|
||||||
filters.remove_opening_balance_txn(entries)
|
filters.remove_opening_balance_txn(entries)
|
||||||
|
|
||||||
returncode = 0
|
returncode = 0
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -5,7 +5,7 @@ from setuptools import setup
|
||||||
setup(
|
setup(
|
||||||
name='conservancy_beancount',
|
name='conservancy_beancount',
|
||||||
description="Plugin, library, and reports for reading Conservancy's books",
|
description="Plugin, library, and reports for reading Conservancy's books",
|
||||||
version='1.1.0',
|
version='1.1.1',
|
||||||
author='Software Freedom Conservancy',
|
author='Software Freedom Conservancy',
|
||||||
author_email='info@sfconservancy.org',
|
author_email='info@sfconservancy.org',
|
||||||
license='GNU AGPLv3+',
|
license='GNU AGPLv3+',
|
||||||
|
|
Loading…
Reference in a new issue