Add support for CORE-POS jump button when viewing Department
This commit is contained in:
parent
07a36982d7
commit
0bf3fcfba4
2 changed files with 19 additions and 1 deletions
18
rattail_demo/web/views/departments.py
Normal file
18
rattail_demo/web/views/departments.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8; -*-
|
||||
"""
|
||||
Department views
|
||||
"""
|
||||
|
||||
from tailbone.views import departments as base
|
||||
# NOTE: the main point of this module is to bring this in
|
||||
from tailbone_corepos.views.departments import DepartmentView
|
||||
|
||||
|
||||
def includeme(config):
|
||||
|
||||
# autocomplete
|
||||
config.add_route('departments.autocomplete', '/departments/autocomplete')
|
||||
config.add_view(base.DepartmentsAutocomplete, route_name='departments.autocomplete',
|
||||
renderer='json', permission='departments.list')
|
||||
|
||||
DepartmentView.defaults(config)
|
Loading…
Add table
Add a link
Reference in a new issue