Update brightfunds importer and bump version number
This commit is contained in:
parent
c714b2f41f
commit
ac2359101b
2 changed files with 7 additions and 2 deletions
|
@ -53,7 +53,12 @@ class _BrightFundsMixin:
|
|||
|
||||
|
||||
class DonorReportImporter(_BrightFundsMixin, _csv.CSVImporterBase):
|
||||
pass
|
||||
BOOK_KWARGS = {'encoding_override': 'utf-8'}
|
||||
DATE_FMT = '%m/%d/%Y'
|
||||
DATE_FIELD = 'Created'
|
||||
DONOR_FIELD = 'Donor Name'
|
||||
EMAIL_FIELD = 'Donor Email'
|
||||
TYPE_FIELD = 'Type'
|
||||
|
||||
|
||||
class DonorReportXLSImporter(_BrightFundsMixin, _xls.XLSImporterBase):
|
||||
|
|
2
setup.py
2
setup.py
|
@ -30,7 +30,7 @@ REQUIREMENTS['tests_require'] = [
|
|||
setup(
|
||||
name='import2ledger',
|
||||
description="Import different sources of financial data to Ledger",
|
||||
version='1.4.3',
|
||||
version='1.4.4',
|
||||
author='Brett Smith',
|
||||
author_email='brettcsmith@brettcsmith.org',
|
||||
license='GNU AGPLv3+',
|
||||
|
|
Loading…
Reference in a new issue