add new model and change offer models

This commit is contained in:
behruz-dev
2025-08-20 13:19:55 +05:00
parent aa5ff56216
commit 4c3630aca2
17 changed files with 173 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ APPS = [
'core.apps.projects',
'core.apps.orders',
'core.apps.finance',
'core.apps.counterparty',
]
PACKAGES = [

View File

@@ -34,6 +34,7 @@ urlpatterns = [
path('products/', include('core.apps.products.urls')),
path('orders/', include('core.apps.orders.urls')),
path('finance/', include('core.apps.finance.urls')),
path('counterparties/', include('core.apps.counterparty.urls')),
]
)),