Add views for NationBuilder donations cache
This commit is contained in:
parent
87f4400e02
commit
d61f05fd2f
|
@ -39,6 +39,11 @@ def make_nationbuilder_menu(request):
|
||||||
'route': 'nationbuilder.cache.people',
|
'route': 'nationbuilder.cache.people',
|
||||||
'perm': 'nationbuilder.cache.people.list',
|
'perm': 'nationbuilder.cache.people.list',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
'title': "Donations",
|
||||||
|
'route': 'nationbuilder.cache.donations',
|
||||||
|
'perm': 'nationbuilder.cache.donations.list',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@ def defaults(config, **kwargs):
|
||||||
mod = lambda spec: kwargs.get(spec, spec)
|
mod = lambda spec: kwargs.get(spec, spec)
|
||||||
|
|
||||||
config.include(mod('tailbone_nationbuilder.views.nationbuilder.people'))
|
config.include(mod('tailbone_nationbuilder.views.nationbuilder.people'))
|
||||||
|
config.include(mod('tailbone_nationbuilder.views.nationbuilder.donations'))
|
||||||
|
|
||||||
|
|
||||||
def includeme(config):
|
def includeme(config):
|
||||||
|
|
112
tailbone_nationbuilder/views/nationbuilder/donations.py
Normal file
112
tailbone_nationbuilder/views/nationbuilder/donations.py
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
# -*- coding: utf-8; -*-
|
||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# Rattail -- Retail Software Framework
|
||||||
|
# Copyright © 2010-2023 Lance Edgar
|
||||||
|
#
|
||||||
|
# This file is part of Rattail.
|
||||||
|
#
|
||||||
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
||||||
|
# terms of the GNU General Public License as published by the Free Software
|
||||||
|
# Foundation, either version 3 of the License, or (at your option) any later
|
||||||
|
# version.
|
||||||
|
#
|
||||||
|
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||||||
|
# details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License along with
|
||||||
|
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
"""
|
||||||
|
NationBuilder Cache Donation views
|
||||||
|
"""
|
||||||
|
|
||||||
|
from rattail_nationbuilder.db.model import NationBuilderCacheDonation
|
||||||
|
|
||||||
|
from .master import NationBuilderMasterView
|
||||||
|
|
||||||
|
|
||||||
|
class NationBuilderCacheDonationView(NationBuilderMasterView):
|
||||||
|
"""
|
||||||
|
Master view for NationBuilder donations cache
|
||||||
|
"""
|
||||||
|
model_class = NationBuilderCacheDonation
|
||||||
|
url_prefix = '/nationbuilder/cache/donations'
|
||||||
|
route_prefix = 'nationbuilder.cache.donations'
|
||||||
|
has_versions = True
|
||||||
|
|
||||||
|
labels = {
|
||||||
|
'id': "ID",
|
||||||
|
'author_id': "Author ID",
|
||||||
|
'membership_id': "Membership ID",
|
||||||
|
'donor_id': "Donor ID",
|
||||||
|
'donor_external_id': "Donor External ID",
|
||||||
|
'tracking_code_slug': "Tracking Code",
|
||||||
|
}
|
||||||
|
|
||||||
|
grid_columns = [
|
||||||
|
'id',
|
||||||
|
'donor_external_id',
|
||||||
|
'amount',
|
||||||
|
'payment_type_name',
|
||||||
|
'check_number',
|
||||||
|
'tracking_code_slug',
|
||||||
|
'created_at',
|
||||||
|
'succeeded_at',
|
||||||
|
'failed_at',
|
||||||
|
'canceled_at',
|
||||||
|
]
|
||||||
|
|
||||||
|
form_fields = [
|
||||||
|
'id',
|
||||||
|
'amount',
|
||||||
|
'payment_type_name',
|
||||||
|
'check_number',
|
||||||
|
'tracking_code_slug',
|
||||||
|
'author_id',
|
||||||
|
'membership_id',
|
||||||
|
'donor_id',
|
||||||
|
'donor_external_id',
|
||||||
|
'email',
|
||||||
|
'note',
|
||||||
|
'created_at',
|
||||||
|
'succeeded_at',
|
||||||
|
'failed_at',
|
||||||
|
'canceled_at',
|
||||||
|
'updated_at',
|
||||||
|
]
|
||||||
|
|
||||||
|
def configure_grid(self, g):
|
||||||
|
super().configure_grid(g)
|
||||||
|
|
||||||
|
g.set_link('id')
|
||||||
|
|
||||||
|
g.set_link('donor_id')
|
||||||
|
|
||||||
|
g.set_link('donor_external_id')
|
||||||
|
if 'donor_external_id' in g.filters:
|
||||||
|
g.filters['donor_external_id'].default_active = True
|
||||||
|
g.filters['donor_external_id'].default_verb = 'contains'
|
||||||
|
|
||||||
|
g.set_type('amount', 'currency')
|
||||||
|
|
||||||
|
g.set_sort_defaults('created_at', 'desc')
|
||||||
|
|
||||||
|
def configure_form(self, f):
|
||||||
|
super().configure_form(f)
|
||||||
|
|
||||||
|
f.set_type('amount', 'currency')
|
||||||
|
|
||||||
|
|
||||||
|
def defaults(config, **kwargs):
|
||||||
|
base = globals()
|
||||||
|
|
||||||
|
NationBuilderCacheDonationView = kwargs.get('NationBuilderCacheDonationView', base['NationBuilderCacheDonationView'])
|
||||||
|
NationBuilderCacheDonationView.defaults(config)
|
||||||
|
|
||||||
|
|
||||||
|
def includeme(config):
|
||||||
|
defaults(config)
|
|
@ -33,7 +33,7 @@ from .master import NationBuilderMasterView
|
||||||
|
|
||||||
class NationBuilderCachePersonView(NationBuilderMasterView):
|
class NationBuilderCachePersonView(NationBuilderMasterView):
|
||||||
"""
|
"""
|
||||||
Master view for NationBuilder Users
|
Master view for NationBuilder people cache
|
||||||
"""
|
"""
|
||||||
model_class = NationBuilderCachePerson
|
model_class = NationBuilderCachePerson
|
||||||
url_prefix = '/nationbuilder/cache/people'
|
url_prefix = '/nationbuilder/cache/people'
|
||||||
|
|
Loading…
Reference in a new issue