ledger: Add memo column to Income sheets.

Quick accommodation for project reporting.
This commit is contained in:
Brett Smith 2020-07-16 16:33:18 -04:00
parent 97d813972b
commit 88ae03302f
2 changed files with 2 additions and 2 deletions

View file

@ -95,7 +95,7 @@ class LedgerODS(core.BaseODS[data.Posting, data.Account]):
'Booked Amount',
]
ACCOUNT_COLUMNS: Dict[str, Sequence[str]] = collections.OrderedDict([
('Income', ['project', 'rt-id', 'receipt', 'income-type']),
('Income', ['project', 'rt-id', 'receipt', 'income-type', 'memo']),
('Expenses', ['project', 'rt-id', 'receipt', 'approval', 'expense-allocation']),
('Equity', ['rt-id']),
('Assets:Receivable', ['project', 'rt-id', 'invoice', 'approval', 'contract', 'purchase-order']),

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.5.9',
version='1.5.10',
author='Software Freedom Conservancy',
author_email='info@sfconservancy.org',
license='GNU AGPLv3+',