Initial commit
basic views for Wave cache tables: Customers, Invoices
This commit is contained in:
commit
2bb75bfd4f
14 changed files with 486 additions and 0 deletions
27
tailbone_wave/__init__.py
Normal file
27
tailbone_wave/__init__.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
tailbone-wave package root
|
||||
"""
|
||||
|
||||
from ._version import __version__
|
3
tailbone_wave/_version.py
Normal file
3
tailbone_wave/_version.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
|
||||
__version__ = '0.1.0'
|
61
tailbone_wave/menus.py
Normal file
61
tailbone_wave/menus.py
Normal file
|
@ -0,0 +1,61 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Common menus for Wave
|
||||
"""
|
||||
|
||||
from rattail_wave.config import get_wave_url
|
||||
|
||||
|
||||
def make_wave_menu(request):
|
||||
url = request.route_url
|
||||
|
||||
wave_menu = {
|
||||
'title': "Wave",
|
||||
'type': 'menu',
|
||||
'items': [
|
||||
{
|
||||
'title': "Customers",
|
||||
'route': 'wave.customers',
|
||||
'perm': 'wave.customers.list',
|
||||
},
|
||||
{
|
||||
'title': "Invoices",
|
||||
'route': 'wave.invoices',
|
||||
'perm': 'wave.invoices.list',
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
wave_url = get_wave_url(request.rattail_config)
|
||||
if wave_url:
|
||||
wave_menu['items'].insert(
|
||||
0, {
|
||||
'title': "Go to Wave",
|
||||
'url': '{}/dashboard/'.format(wave_url),
|
||||
'target': '_blank',
|
||||
})
|
||||
wave_menu['items'].insert(
|
||||
1, {'type': 'sep'})
|
||||
|
||||
return wave_menu
|
0
tailbone_wave/views/__init__.py
Normal file
0
tailbone_wave/views/__init__.py
Normal file
32
tailbone_wave/views/wave/__init__.py
Normal file
32
tailbone_wave/views/wave/__init__.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Wave Views
|
||||
"""
|
||||
|
||||
from .master import WaveMasterView
|
||||
|
||||
|
||||
def includeme(config):
|
||||
config.include('tailbone_wave.views.wave.customers')
|
||||
config.include('tailbone_wave.views.wave.invoices')
|
76
tailbone_wave/views/wave/customers.py
Normal file
76
tailbone_wave/views/wave/customers.py
Normal file
|
@ -0,0 +1,76 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Wave Client views
|
||||
"""
|
||||
|
||||
from rattail_wave.db.model import WaveCacheCustomer
|
||||
|
||||
from .master import WaveMasterView
|
||||
|
||||
|
||||
class WaveCustomerView(WaveMasterView):
|
||||
"""
|
||||
Master view for Wave Customers
|
||||
"""
|
||||
model_class = WaveCacheCustomer
|
||||
url_prefix = '/wave/customers'
|
||||
route_prefix = 'wave.customers'
|
||||
|
||||
labels = {
|
||||
'internal_id': "Internal ID",
|
||||
}
|
||||
|
||||
grid_columns = [
|
||||
'name',
|
||||
'email',
|
||||
'is_archived',
|
||||
'modified_at',
|
||||
]
|
||||
|
||||
def configure_grid(self, g):
|
||||
super(WaveCustomerView, self).configure_grid(g)
|
||||
|
||||
g.filters['name'].default_active = True
|
||||
g.filters['name'].default_verb = 'contains'
|
||||
|
||||
g.set_sort_defaults('name')
|
||||
|
||||
g.set_link('name')
|
||||
g.set_link('email')
|
||||
|
||||
def configure_form(self, f):
|
||||
super(WaveCustomerView, self).configure_form(f)
|
||||
|
||||
f.remove_field('invoices')
|
||||
|
||||
|
||||
def defaults(config, **kwargs):
|
||||
base = globals()
|
||||
|
||||
WaveCustomerView = kwargs.get('WaveCustomerView', base['WaveCustomerView'])
|
||||
WaveCustomerView.defaults(config)
|
||||
|
||||
|
||||
def includeme(config):
|
||||
defaults(config)
|
75
tailbone_wave/views/wave/invoices.py
Normal file
75
tailbone_wave/views/wave/invoices.py
Normal file
|
@ -0,0 +1,75 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Wave Client views
|
||||
"""
|
||||
|
||||
from rattail_wave.db.model import WaveCacheInvoice
|
||||
|
||||
from .master import WaveMasterView
|
||||
|
||||
|
||||
class WaveInvoiceView(WaveMasterView):
|
||||
"""
|
||||
Master view for Wave Invoices
|
||||
"""
|
||||
model_class = WaveCacheInvoice
|
||||
url_prefix = '/wave/invoices'
|
||||
route_prefix = 'wave.invoices'
|
||||
|
||||
grid_columns = [
|
||||
'title',
|
||||
'customer',
|
||||
'invoice_date',
|
||||
'total',
|
||||
'status',
|
||||
'modified_at',
|
||||
]
|
||||
|
||||
def configure_grid(self, g):
|
||||
super(WaveInvoiceView, self).configure_grid(g)
|
||||
model = self.model
|
||||
|
||||
g.set_joiner('customer', lambda q: q.join(model.WaveCacheCustomer))
|
||||
g.set_sorter('customer', model.WaveCacheCustomer.name)
|
||||
g.set_filter('customer', model.WaveCacheCustomer.name,
|
||||
label="Customer Name",
|
||||
default_active=True, default_verb='contains')
|
||||
|
||||
g.set_type('total', 'currency')
|
||||
|
||||
g.set_sort_defaults('modified_at', 'desc')
|
||||
|
||||
g.set_link('customer')
|
||||
g.set_link('invoice_date')
|
||||
|
||||
|
||||
def defaults(config, **kwargs):
|
||||
base = globals()
|
||||
|
||||
WaveInvoiceView = kwargs.get('WaveInvoiceView', base['WaveInvoiceView'])
|
||||
WaveInvoiceView.defaults(config)
|
||||
|
||||
|
||||
def includeme(config):
|
||||
defaults(config)
|
39
tailbone_wave/views/wave/master.py
Normal file
39
tailbone_wave/views/wave/master.py
Normal file
|
@ -0,0 +1,39 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2022 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Wave master view
|
||||
"""
|
||||
|
||||
from tailbone.views import MasterView
|
||||
|
||||
|
||||
class WaveMasterView(MasterView):
|
||||
"""
|
||||
Base class for Wave cache tables
|
||||
"""
|
||||
has_versions = True
|
||||
|
||||
labels = {
|
||||
'id': "ID",
|
||||
'internal_id': "Internal ID",
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue