Initial commit

basic views for Wave cache tables: Customers, Invoices
This commit is contained in:
Lance Edgar 2022-09-02 17:18:03 -05:00
commit 2bb75bfd4f
14 changed files with 486 additions and 0 deletions

View file

View 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')

View 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)

View 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)

View 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",
}