2017-07-14 19:20:19 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
2015-02-26 19:06:20 -06:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2022-11-23 12:20:58 -06:00
|
|
|
# Copyright © 2010-2022 Lance Edgar
|
2015-02-26 19:06:20 -06:00
|
|
|
#
|
|
|
|
# This file is part of Rattail.
|
|
|
|
#
|
|
|
|
# Rattail is free software: you can redistribute it and/or modify it under the
|
2017-07-06 23:47:56 -05:00
|
|
|
# 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.
|
2015-02-26 19:06:20 -06:00
|
|
|
#
|
|
|
|
# Rattail is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
2017-07-06 23:47:56 -05:00
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
2015-02-26 19:06:20 -06:00
|
|
|
#
|
2017-07-06 23:47:56 -05:00
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# Rattail. If not, see <http://www.gnu.org/licenses/>.
|
2015-02-26 19:06:20 -06:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Tax Views
|
|
|
|
"""
|
|
|
|
|
2016-02-14 21:34:01 -06:00
|
|
|
from __future__ import unicode_literals, absolute_import
|
2015-02-26 19:06:20 -06:00
|
|
|
|
|
|
|
from rattail.db import model
|
|
|
|
|
2018-02-05 21:23:23 -06:00
|
|
|
from tailbone.views import MasterView
|
2015-02-26 19:06:20 -06:00
|
|
|
|
|
|
|
|
2021-01-28 16:32:25 -06:00
|
|
|
class TaxView(MasterView):
|
2016-02-14 21:34:01 -06:00
|
|
|
"""
|
|
|
|
Master view for taxes.
|
|
|
|
"""
|
|
|
|
model_class = model.Tax
|
|
|
|
model_title_plural = "Taxes"
|
|
|
|
route_prefix = 'taxes'
|
2017-07-15 02:46:39 -05:00
|
|
|
has_versions = True
|
2015-02-26 19:06:20 -06:00
|
|
|
|
2017-07-14 19:20:19 -05:00
|
|
|
grid_columns = [
|
|
|
|
'code',
|
|
|
|
'description',
|
|
|
|
'rate',
|
|
|
|
]
|
|
|
|
|
2018-01-08 20:41:31 -06:00
|
|
|
form_fields = [
|
|
|
|
'code',
|
|
|
|
'description',
|
|
|
|
'rate',
|
|
|
|
]
|
|
|
|
|
2016-02-14 21:34:01 -06:00
|
|
|
def configure_grid(self, g):
|
2021-01-28 16:32:25 -06:00
|
|
|
super(TaxView, self).configure_grid(g)
|
2016-02-14 21:34:01 -06:00
|
|
|
g.filters['description'].default_active = True
|
|
|
|
g.filters['description'].default_verb = 'contains'
|
2017-12-04 22:40:10 -06:00
|
|
|
g.set_sort_defaults('code')
|
2017-08-03 19:16:53 -05:00
|
|
|
g.set_link('code')
|
|
|
|
g.set_link('description')
|
2015-02-26 19:06:20 -06:00
|
|
|
|
2021-01-28 16:32:25 -06:00
|
|
|
# TODO: deprecate / remove this
|
|
|
|
TaxesView = TaxView
|
|
|
|
|
2015-02-26 19:06:20 -06:00
|
|
|
|
2022-11-23 12:20:58 -06:00
|
|
|
def defaults(config, **kwargs):
|
|
|
|
base = globals()
|
|
|
|
|
|
|
|
TaxView = kwargs.get('TaxView', base['TaxView'])
|
2021-01-28 16:32:25 -06:00
|
|
|
TaxView.defaults(config)
|
2022-11-23 12:20:58 -06:00
|
|
|
|
|
|
|
|
|
|
|
def includeme(config):
|
|
|
|
defaults(config)
|