add orders app and add new model on products

This commit is contained in:
behruz-dev
2025-08-01 16:36:27 +05:00
parent a714dbacb3
commit f757e42906
23 changed files with 326 additions and 3 deletions

11
core/apps/orders/urls.py Normal file
View File

@@ -0,0 +1,11 @@
from django.urls import path, include
from core.apps.orders.views import order as order_views
urlpatterns = [
path('order_application/', include(
[
path('create/', order_views.OrderApplicationCreateApiView.as_view()),
]
)),
]