fund: Swap Unearned Income and Payable columns.
Unearned Income is more interesting.
This commit is contained in:
parent
b41249bec6
commit
b25bea0fc6
3 changed files with 3 additions and 3 deletions
|
@ -86,8 +86,8 @@ EQUITY_ACCOUNTS = ['Equity', 'Income', 'Expenses']
|
||||||
INFO_ACCOUNTS = [
|
INFO_ACCOUNTS = [
|
||||||
'Assets:Receivable',
|
'Assets:Receivable',
|
||||||
'Assets:Prepaid',
|
'Assets:Prepaid',
|
||||||
'Liabilities:Payable',
|
|
||||||
'Liabilities:UnearnedIncome',
|
'Liabilities:UnearnedIncome',
|
||||||
|
'Liabilities:Payable',
|
||||||
]
|
]
|
||||||
PROGNAME = 'fund-report'
|
PROGNAME = 'fund-report'
|
||||||
UNRESTRICTED_FUND = 'Conservancy'
|
UNRESTRICTED_FUND = 'Conservancy'
|
||||||
|
|
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.5.6',
|
version='1.5.7',
|
||||||
author='Software Freedom Conservancy',
|
author='Software Freedom Conservancy',
|
||||||
author_email='info@sfconservancy.org',
|
author_email='info@sfconservancy.org',
|
||||||
license='GNU AGPLv3+',
|
license='GNU AGPLv3+',
|
||||||
|
|
|
@ -199,8 +199,8 @@ def check_ods_sheet(sheet, account_balances, *, full):
|
||||||
if full:
|
if full:
|
||||||
check_cell_balance(next(cells), balances['Assets:Receivable'])
|
check_cell_balance(next(cells), balances['Assets:Receivable'])
|
||||||
check_cell_balance(next(cells), balances['Assets:Prepaid'])
|
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'])
|
||||||
|
check_cell_balance(next(cells), balances['Liabilities:Payable'])
|
||||||
assert next(cells, None) is None
|
assert next(cells, None) is None
|
||||||
assert not account_bals, "did not see all funds in report"
|
assert not account_bals, "did not see all funds in report"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue