Skip to content

Commit

Permalink
Include validaiton logic for lender with external onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
yolile committed Oct 17, 2024
1 parent a5d6fe1 commit ff9c57c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 174 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ repos:
rev: v0.6.9
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.4.18
Expand Down
43 changes: 29 additions & 14 deletions app/routers/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,23 +96,30 @@ async def approve_application(
:return: The approved application with its associated relations.
"""
with rollback_on_error(session):
# Check if all keys present in an instance of UpdateDataField exist and have truthy values in
# the application's `secop_data_verification`.
app_secop_dict = application.secop_data_verification.copy()
fields = list(parsers.UpdateDataField().model_dump().keys())
not_validated_fields = [key for key in fields if key not in app_secop_dict or not app_secop_dict[key]]
if not_validated_fields:
raise HTTPException(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
detail=_("Some borrower data field are not verified"),
)
# If the lender has an external onboarding system the fields and documents verification is not required-
if not application.lender.external_onboarding_url:
# Check if all keys present in an instance of UpdateDataField exist and have truthy values in
# the application's `secop_data_verification`.
app_secop_dict = application.secop_data_verification.copy()
fields = list(parsers.UpdateDataField().model_dump().keys())
not_validated_fields = [key for key in fields if key not in app_secop_dict or not app_secop_dict[key]]
if not_validated_fields:
raise HTTPException(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
detail=_("Some borrower data field are not verified"),
)

# Check all documents are verified.
not_validated_documents = [doc.type for doc in application.borrower_documents if not doc.verified]
if not_validated_documents:
# Check all documents are verified.
not_validated_documents = [doc.type for doc in application.borrower_documents if not doc.verified]
if not_validated_documents:
raise HTTPException(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
detail=_("Some documents are not verified"),
)
if not payload.disbursed_final_amount:
raise HTTPException(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
detail=_("Some documents are not verified"),
detail=_("The disbursed final amount information is required for approving the application"),
)

# Approve the application.
Expand Down Expand Up @@ -460,6 +467,14 @@ async def email_borrower(
:raises HTTPException: If there's an error in sending the email to the borrower.
"""
with rollback_on_error(session):
if application.lender.external_onboarding_url:
raise HTTPException(
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY,
detail=_(
"The lender has an external onboarding system so no information can be requested from the "
"borrower through Credere"
),
)
application.status = models.ApplicationStatus.INFORMATION_REQUESTED
application.information_requested_at = datetime.now(application.created_at.tzinfo)
application.pending_documents = True
Expand Down
159 changes: 0 additions & 159 deletions email_templates/test.html

This file was deleted.

0 comments on commit ff9c57c

Please sign in to comment.