fund: Swap Unearned Income and Payable columns.

Unearned Income is more interesting.
This commit is contained in:
Brett Smith 2020-07-01 15:59:22 -04:00
parent b41249bec6
commit b25bea0fc6
3 changed files with 3 additions and 3 deletions

View file

@ -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'

View file

@ -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+',

View file

@ -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"