Changeset - 7baa78fe3473
[Not reviewed]
0 3 0
Brett Smith - 4 years ago 2020-09-22 14:20:51
brettcsmith@brettcsmith.org
ledger: Add Equity back to default project report sheets.

While many projects often won't have anything here, this is necessary to
show project funds released from restrictions.
3 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reports/ledger.py
Show inline comments
...
 
@@ -761,6 +761,7 @@ metadata to match. A single ticket number is a shortcut for
 
            args.accounts = [
 
                'Income',
 
                'Expenses',
 
                'Equity',
 
                'Assets:Receivable',
 
                'Assets:Prepaid',
 
                'Liabilities:UnearnedIncome',
setup.py
Show inline comments
...
 
@@ -5,7 +5,7 @@ from setuptools import setup
 
setup(
 
    name='conservancy_beancount',
 
    description="Plugin, library, and reports for reading Conservancy's books",
 
    version='1.11.0',
 
    version='1.11.1',
 
    author='Software Freedom Conservancy',
 
    author_email='info@sfconservancy.org',
 
    license='GNU AGPLv3+',
tests/test_reports_ledger.py
Show inline comments
...
 
@@ -56,7 +56,6 @@ PROJECT_REPORT_SHEETS = DEFAULT_REPORT_SHEETS[:5] + [
 
    'Liabilities:UnearnedIncome',
 
    'Liabilities:Payable',
 
]
 
del PROJECT_REPORT_SHEETS[3]
 
OVERSIZE_RE = re.compile(
 
    r'^([A-Za-z0-9:]+) has ([0-9,]+) rows, over size ([0-9,]+)$'
 
)
0 comments (0 inline, 0 general)