Tweak menu, to include Ordering/Inventory Worksheets
This commit is contained in:
parent
e4bd4953a4
commit
0b5fd81c0c
|
@ -39,6 +39,9 @@ class TheoConfig(ConfigExtension):
|
|||
config.setdefault('rattail', 'app_title', "Theo")
|
||||
config.setdefault('rattail', 'app_package', 'theo')
|
||||
|
||||
# Theo comes with its own menu for web app
|
||||
config.setdefault('tailbone.menus', 'handler', 'theo.web.menus:TheoMenuHandler')
|
||||
|
||||
# Trainwreck model is same regardless of POS
|
||||
config.setdefault('rattail.trainwreck', 'model', 'rattail.trainwreck.db.model.defaults')
|
||||
|
||||
|
|
39
theo/web/menus.py
Normal file
39
theo/web/menus.py
Normal file
|
@ -0,0 +1,39 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2023 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/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
Web Menus
|
||||
"""
|
||||
|
||||
from tailbone import menus as base
|
||||
|
||||
|
||||
class TheoMenuHandler(base.MenuHandler):
|
||||
"""
|
||||
Theo menu handler
|
||||
"""
|
||||
|
||||
def make_reports_menu(self, request, **kwargs):
|
||||
|
||||
kwargs['include_worksheets'] = True
|
||||
|
||||
return super(TheoMenuHandler, self).make_reports_menu(request, **kwargs)
|
Loading…
Reference in a new issue