ledger: Add memo column to Income sheets.
Quick accommodation for project reporting.
This commit is contained in:
parent
97d813972b
commit
88ae03302f
2 changed files with 2 additions and 2 deletions
|
@ -95,7 +95,7 @@ class LedgerODS(core.BaseODS[data.Posting, data.Account]):
|
||||||
'Booked Amount',
|
'Booked Amount',
|
||||||
]
|
]
|
||||||
ACCOUNT_COLUMNS: Dict[str, Sequence[str]] = collections.OrderedDict([
|
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']),
|
('Expenses', ['project', 'rt-id', 'receipt', 'approval', 'expense-allocation']),
|
||||||
('Equity', ['rt-id']),
|
('Equity', ['rt-id']),
|
||||||
('Assets:Receivable', ['project', 'rt-id', 'invoice', 'approval', 'contract', 'purchase-order']),
|
('Assets:Receivable', ['project', 'rt-id', 'invoice', 'approval', 'contract', 'purchase-order']),
|
||||||
|
|
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.9',
|
version='1.5.10',
|
||||||
author='Software Freedom Conservancy',
|
author='Software Freedom Conservancy',
|
||||||
author_email='info@sfconservancy.org',
|
author_email='info@sfconservancy.org',
|
||||||
license='GNU AGPLv3+',
|
license='GNU AGPLv3+',
|
||||||
|
|
Loading…
Reference in a new issue