Normalize naming of all master views

This commit is contained in:
Lance Edgar 2021-01-28 16:41:35 -06:00
parent ad405d0777
commit b14e4b09fc
7 changed files with 11 additions and 11 deletions

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar # Copyright © 2010-2021 Lance Edgar
# #
# This file is part of Rattail. # This file is part of Rattail.
# #
@ -27,7 +27,7 @@ Customer Views
from tailbone.views import customers as base from tailbone.views import customers as base
class CustomerView(base.CustomersView): class CustomerView(base.CustomerView):
""" """
Master view for the Customer class. Master view for the Customer class.
""" """

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar # Copyright © 2010-2021 Lance Edgar
# #
# This file is part of Rattail. # 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 from tailbone.views import departments as base
class DepartmentView(base.DepartmentsView): class DepartmentView(base.DepartmentView):
""" """
Master view for the Department class. Master view for the Department class.
""" """

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar # Copyright © 2010-2021 Lance Edgar
# #
# This file is part of Rattail. # 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 from tailbone.views import people as base
class PersonView(base.PeopleView): class PersonView(base.PersonView):
""" """
Expose some extra fields etc. per CORE-POS integration. Expose some extra fields etc. per CORE-POS integration.

View file

@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
from tailbone.views import products as base from tailbone.views import products as base
class ProductView(base.ProductsView): class ProductView(base.ProductView):
""" """
Master view for the Product class. Master view for the Product class.
""" """

View file

@ -27,7 +27,7 @@ Store Views
from tailbone.views import stores as base from tailbone.views import stores as base
class StoreView(base.StoresView): class StoreView(base.StoreView):
""" """
Master view for the Store class. Master view for the Store class.
""" """

View file

@ -2,7 +2,7 @@
################################################################################ ################################################################################
# #
# Rattail -- Retail Software Framework # Rattail -- Retail Software Framework
# Copyright © 2010-2020 Lance Edgar # Copyright © 2010-2021 Lance Edgar
# #
# This file is part of Rattail. # 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 from tailbone.views import subdepartments as base
class SubdepartmentView(base.SubdepartmentsView): class SubdepartmentView(base.SubdepartmentView):
""" """
Master view for the Subdepartment class. Master view for the Subdepartment class.
""" """

View file

@ -29,7 +29,7 @@ from rattail_corepos.config import core_office_url
from tailbone.views import vendors as base from tailbone.views import vendors as base
class VendorView(base.VendorsView): class VendorView(base.VendorView):
""" """
Expose some extra fields etc. per CORE-POS integration. Expose some extra fields etc. per CORE-POS integration.