feat: add Didox service integration for company info retrieval
All checks were successful
Deploy to Production / build-and-deploy (push) Successful in 2m9s

This commit is contained in:
komoliddin
2026-04-21 13:05:45 +05:00
parent 70555fa93a
commit 8a1a66a05d
8 changed files with 94 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ from .views import (
AutoEvaluationListAppraisersView,
AutoEvaluationSetAppraisersView,
AutoEvaluationRemoveAppraisersView,
DidoxCompanyInfoAPIView,
)
@@ -60,4 +61,9 @@ urlpatterns = [
path("<int:id>/remove/", AutoEvaluationRemoveAppraisersView.as_view(), name="auto-evaluation-remove-appraisers"),
]
)),
path(
"didox/info/<int:tin>/",
DidoxCompanyInfoAPIView.as_view(),
name="didox-info"
),
]