Normalize naming of all master views
This commit is contained in:
parent
ad405d0777
commit
b14e4b09fc
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2020 Lance Edgar
|
||||
# Copyright © 2010-2021 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -27,7 +27,7 @@ Customer Views
|
|||
from tailbone.views import customers as base
|
||||
|
||||
|
||||
class CustomerView(base.CustomersView):
|
||||
class CustomerView(base.CustomerView):
|
||||
"""
|
||||
Master view for the Customer class.
|
||||
"""
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2020 Lance Edgar
|
||||
# Copyright © 2010-2021 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
|
|||
from tailbone.views import departments as base
|
||||
|
||||
|
||||
class DepartmentView(base.DepartmentsView):
|
||||
class DepartmentView(base.DepartmentView):
|
||||
"""
|
||||
Master view for the Department class.
|
||||
"""
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2020 Lance Edgar
|
||||
# Copyright © 2010-2021 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_customer_account_url
|
|||
from tailbone.views import people as base
|
||||
|
||||
|
||||
class PersonView(base.PeopleView):
|
||||
class PersonView(base.PersonView):
|
||||
"""
|
||||
Expose some extra fields etc. per CORE-POS integration.
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
|
|||
from tailbone.views import products as base
|
||||
|
||||
|
||||
class ProductView(base.ProductsView):
|
||||
class ProductView(base.ProductView):
|
||||
"""
|
||||
Master view for the Product class.
|
||||
"""
|
||||
|
|
|
@ -27,7 +27,7 @@ Store Views
|
|||
from tailbone.views import stores as base
|
||||
|
||||
|
||||
class StoreView(base.StoresView):
|
||||
class StoreView(base.StoreView):
|
||||
"""
|
||||
Master view for the Store class.
|
||||
"""
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2020 Lance Edgar
|
||||
# Copyright © 2010-2021 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
|
|||
from tailbone.views import subdepartments as base
|
||||
|
||||
|
||||
class SubdepartmentView(base.SubdepartmentsView):
|
||||
class SubdepartmentView(base.SubdepartmentView):
|
||||
"""
|
||||
Master view for the Subdepartment class.
|
||||
"""
|
||||
|
|
|
@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
|
|||
from tailbone.views import vendors as base
|
||||
|
||||
|
||||
class VendorView(base.VendorsView):
|
||||
class VendorView(base.VendorView):
|
||||
"""
|
||||
Expose some extra fields etc. per CORE-POS integration.
|
||||
|
||||
|
|
Loading…
Reference in a new issue