change: change counterparty model and add create api

This commit is contained in:
behruz-dev
2025-08-30 15:41:29 +05:00
parent 4a2f02f5ac
commit 392fc13f8e
7 changed files with 216 additions and 25 deletions

View File

@@ -7,6 +7,7 @@ urlpatterns = [
path('counterparty/', include(
[
path('list/', cp_views.CounterpartyListApiView.as_view()),
path('create/', cp_views.CounterpartyCreateApiView.as_view()),
]
))
]