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.
This commit is contained in:
Brett Smith 2020-09-22 10:20:51 -04:00
parent f8758e2847
commit 7baa78fe34
3 changed files with 2 additions and 2 deletions

View file

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

View file

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

View file

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