2018-02-03 16:12:36 -06:00
|
|
|
# -*- coding: utf-8; -*-
|
2012-04-10 12:39:30 -05:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# Rattail -- Retail Software Framework
|
2018-02-03 16:12:36 -06:00
|
|
|
# Copyright © 2010-2018 Lance Edgar
|
2012-04-10 12:39:30 -05: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.
|
2012-04-10 12:39:30 -05: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.
|
2012-04-10 12:39:30 -05: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/>.
|
2012-04-10 12:39:30 -05:00
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
"""
|
2013-09-01 09:27:47 -05:00
|
|
|
Pyramid Views
|
2012-04-10 12:39:30 -05:00
|
|
|
"""
|
|
|
|
|
2016-10-09 21:12:13 -05:00
|
|
|
from __future__ import unicode_literals, absolute_import
|
|
|
|
|
2015-08-15 17:00:01 -05:00
|
|
|
from .core import View
|
2015-07-29 11:09:38 -05:00
|
|
|
from .master import MasterView
|
2013-09-01 17:31:50 -05:00
|
|
|
|
2016-12-12 15:24:26 -06:00
|
|
|
# TODO: deprecate / remove some of this
|
|
|
|
from .autocomplete import AutocompleteView
|
2013-09-01 17:31:50 -05:00
|
|
|
|
|
|
|
|
2012-09-17 13:59:24 -05:00
|
|
|
def includeme(config):
|
2013-09-01 17:31:50 -05:00
|
|
|
|
2016-12-12 15:24:26 -06:00
|
|
|
# core views
|
2016-05-01 20:39:05 -05:00
|
|
|
config.include('tailbone.views.common')
|
2013-09-01 17:31:50 -05:00
|
|
|
config.include('tailbone.views.auth')
|
2016-12-12 15:24:26 -06:00
|
|
|
|
|
|
|
# main table views
|
2015-07-21 19:19:01 -05:00
|
|
|
config.include('tailbone.views.bouncer')
|
2013-09-01 17:31:50 -05:00
|
|
|
config.include('tailbone.views.brands')
|
|
|
|
config.include('tailbone.views.categories')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.customergroups')
|
|
|
|
config.include('tailbone.views.customers')
|
2015-11-04 22:30:55 -06:00
|
|
|
config.include('tailbone.views.datasync')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.departments')
|
2015-02-26 19:06:20 -06:00
|
|
|
config.include('tailbone.views.depositlinks')
|
2016-10-06 13:13:31 -05:00
|
|
|
config.include('tailbone.views.email')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.employees')
|
2014-04-13 02:04:30 -05:00
|
|
|
config.include('tailbone.views.families')
|
2016-10-06 13:13:31 -05:00
|
|
|
config.include('tailbone.views.handheld')
|
|
|
|
config.include('tailbone.views.inventory')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.labels')
|
2016-10-06 13:13:31 -05:00
|
|
|
config.include('tailbone.views.messages')
|
2013-09-01 17:31:50 -05:00
|
|
|
config.include('tailbone.views.people')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.products')
|
2014-01-29 00:35:33 -06:00
|
|
|
config.include('tailbone.views.progress')
|
2016-11-06 12:58:29 -06:00
|
|
|
config.include('tailbone.views.purchases')
|
2016-10-06 13:13:31 -05:00
|
|
|
config.include('tailbone.views.reportcodes')
|
|
|
|
config.include('tailbone.views.reports')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.roles')
|
2016-10-06 13:13:31 -05:00
|
|
|
config.include('tailbone.views.settings')
|
2016-04-25 19:40:29 -05:00
|
|
|
config.include('tailbone.views.shifts')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.stores')
|
|
|
|
config.include('tailbone.views.subdepartments')
|
2015-02-26 19:06:20 -06:00
|
|
|
config.include('tailbone.views.taxes')
|
2017-08-05 22:07:49 -05:00
|
|
|
config.include('tailbone.views.upgrades')
|
2013-09-01 17:31:50 -05:00
|
|
|
config.include('tailbone.views.users')
|
2013-09-01 09:27:47 -05:00
|
|
|
config.include('tailbone.views.vendors')
|
2016-11-21 19:36:57 -06:00
|
|
|
|
2016-12-12 15:24:26 -06:00
|
|
|
# batch views
|
2016-11-21 19:36:57 -06:00
|
|
|
config.include('tailbone.views.batch.pricing')
|