Skip to content

Commit

Permalink
CIV-14614 Fix Defendant Dashboard Status (#5093)
Browse files Browse the repository at this point in the history
* CIV-14614 : Add value to ccjRequestedDate

* CIV-14614 : Add value to ccjRequestedDate

* CIV-14614 : Add logs

* CIV-14614 : Add logs

* CIV-14614 Remove console logs

---------

Co-authored-by: hmcts-version1-pablo <[email protected]>
Co-authored-by: Johnny Vineall <[email protected]>
Co-authored-by: sankhajuria <[email protected]>
  • Loading branch information
4 people committed Jul 23, 2024
1 parent fbc426a commit a42e326
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ private DashboardClaimInfo translateCaseDataToDashboardClaimInfo(CaseDetails cas
if (caseData.getRespondToAdmittedClaimOwingAmountPounds() != null) {
item.setRespondToAdmittedClaimOwingAmountPounds(caseData.getRespondToAdmittedClaimOwingAmountPounds());
}

if (caseData.hasApplicant1AcceptedCcj()) {
item.setCcjRequestedDate(caseData.getApplicant1ResponseDate());
}

if (caseData.getActiveJudgment() != null) {
item.setCcjRequestedDate(caseData.getActiveJudgment().getCreatedTimestamp());
}
Expand Down

0 comments on commit a42e326

Please sign in to comment.