feat(evaluation): baholash modellari yaratildi (auto, ko'chmas mulk, ko'char mulk, tezkor, hisobot)

This commit is contained in:
Husanjonazamov
2026-02-18 17:44:15 +05:00
parent 3ef3f8fd3f
commit 4ddd4f138f
26 changed files with 335 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ from rest_framework.routers import DefaultRouter
from .views import (
AutoEvaluationView,
CustomerView,
EvaluationReportView,
MovablePropertyEvaluationView,
PropertyOwnerView,
QuickEvaluationView,
@@ -13,6 +14,7 @@ from .views import (
)
router = DefaultRouter()
router.register("evaluation-report", EvaluationReportView, basename="evaluation-report")
router.register("quick-evaluation", QuickEvaluationView, basename="quick-evaluation")
router.register("movable-property-evaluation", MovablePropertyEvaluationView, basename="movable-property-evaluation")
router.register("real-estate-evaluation", RealEstateEvaluationView, basename="real-estate-evaluation")