2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-16 01:36:29 +00:00

Renamed 'customer-order' app to 'customer'

- This app should manage more than just orders
- Moved the 'Customer' model into this app
This commit is contained in:
Oliver
2018-04-17 23:39:53 +10:00
parent 53d7fd2c46
commit 8856d7f793
24 changed files with 145 additions and 188 deletions

View File

@@ -51,7 +51,7 @@ INSTALLED_APPS = [
'stock.apps.StockConfig',
'supplier.apps.SupplierConfig',
'build.apps.BuildConfig',
'customer_orders.apps.CustomerOrdersConfig'
'customer.apps.CustomerConfig'
]
MIDDLEWARE = [

View File

@@ -13,7 +13,7 @@ from supplier.urls import supplier_urls
from build.urls import build_urls
from customer_orders.urls import customer_orders_urls
from customer.urls import customer_orders_urls
from django.conf import settings
from django.conf.urls.static import static