add finance app

This commit is contained in:
behruz-dev
2025-08-04 13:35:22 +05:00
parent 1dffabde44
commit bb8fbd4ca7
32 changed files with 336 additions and 69 deletions

12
core/apps/finance/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path, include
from core.apps.finance.views import cash_transaction as cash_views
urlpatterns = [
path('cash_transaction/', include(
[
path('list/', cash_views.CashTransactionListApiView.as_view()),
]
))
]