Changeset - b25bea0fc656
[Not reviewed]
0 3 0
Brett Smith - 4 years ago 2020-07-01 19:59:55
brettcsmith@brettcsmith.org
fund: Swap Unearned Income and Payable columns.

Unearned Income is more interesting.
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/reports/fund.py
Show inline comments
...
 
@@ -87,6 +87,6 @@ INFO_ACCOUNTS = [
 
    'Assets:Receivable',
 
    'Assets:Prepaid',
 
    'Liabilities:Payable',
 
    'Liabilities:UnearnedIncome',
 
    'Liabilities:Payable',
 
]
 
PROGNAME = 'fund-report'
setup.py
Show inline comments
...
 
@@ -6,5 +6,5 @@ setup(
 
    name='conservancy_beancount',
 
    description="Plugin, library, and reports for reading Conservancy's books",
 
    version='1.5.6',
 
    version='1.5.7',
 
    author='Software Freedom Conservancy',
 
    author_email='info@sfconservancy.org',
tests/test_reports_fund.py
Show inline comments
...
 
@@ -200,6 +200,6 @@ def check_ods_sheet(sheet, account_balances, *, full):
 
            check_cell_balance(next(cells), balances['Assets:Receivable'])
 
            check_cell_balance(next(cells), balances['Assets:Prepaid'])
 
            check_cell_balance(next(cells), balances['Liabilities:Payable'])
 
            check_cell_balance(next(cells), balances['Liabilities'])
 
            check_cell_balance(next(cells), balances['Liabilities:Payable'])
 
        assert next(cells, None) is None
 
    assert not account_bals, "did not see all funds in report"
0 comments (0 inline, 0 general)