meta_tax_implication: New values for grant recipients.

This commit is contained in:
Brett Smith 2021-01-18 15:45:31 -05:00
parent 728db9983e
commit 31cee4e0ba
3 changed files with 6 additions and 1 deletions

View file

@ -40,6 +40,7 @@ class MetaTaxImplication(core._NormalizePostingMetadataHook):
'Bank-Transfer',
'Chargeback',
'Foreign-Corporation',
'Foreign-Grantee',
'Foreign-Individual-Contractor',
'Loan',
'Refund',
@ -48,6 +49,7 @@ class MetaTaxImplication(core._NormalizePostingMetadataHook):
'Tax-Payment',
'USA-501c3',
'USA-Corporation',
'USA-Grantee',
'W2',
]
_ALIASES = dict(

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

View file

@ -20,6 +20,7 @@ VALID_VALUES = {
'Bank-Transfer': 'Bank-Transfer',
'Chargeback': 'Chargeback',
'Foreign-Corporation': 'Foreign-Corporation',
'Foreign-Grantee': 'Foreign-Grantee',
'Foreign-Individual-Contractor': 'Foreign-Individual-Contractor',
'Loan': 'Loan',
'Refund': 'Refund',
@ -28,6 +29,8 @@ VALID_VALUES = {
'Tax-Payment': 'Tax-Payment',
'USA-501c3': 'USA-501c3',
'USA-Corporation': 'USA-Corporation',
'USA-Grantee': 'USA-Grantee',
'US-Grantee': 'USA-Grantee',
'W2': 'W2',
}