2017-07-14 19:20:19 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
2015-02-26 19:06:20 -06:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2018-01-08 20:41:31 -06:00
|
|
|
# Copyright © 2010-2018 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
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
|
|
|
Deposit Link 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
|
|
|
|
|
|
|
|
2016-02-14 21:34:01 -06:00
|
|
|
class DepositLinksView(MasterView):
|
|
|
|
"""
|
|
|
|
Master view for deposit links.
|
|
|
|
"""
|
|
|
|
model_class = model.DepositLink
|
|
|
|
url_prefix = '/deposit-links'
|
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',
|
|
|
|
'amount',
|
|
|
|
]
|
|
|
|
|
2018-01-08 20:41:31 -06:00
|
|
|
form_fields = [
|
|
|
|
'code',
|
|
|
|
'description',
|
|
|
|
'amount',
|
|
|
|
]
|
|
|
|
|
2017-07-14 19:20:19 -05:00
|
|
|
def configure_grid(self, g):
|
|
|
|
super(DepositLinksView, 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-07-14 19:20:19 -05:00
|
|
|
g.set_type('amount', 'currency')
|
2017-08-03 19:16:53 -05:00
|
|
|
g.set_link('code')
|
|
|
|
g.set_link('description')
|
2015-02-26 19:06:20 -06:00
|
|
|
|
|
|
|
|
|
|
|
def includeme(config):
|
2016-02-14 21:34:01 -06:00
|
|
|
DepositLinksView.defaults(config)
|