Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIV-14675 Incorrect claim list status #5114

Merged
merged 9 commits into from
Jul 24, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,10 @@ public boolean defendantRespondedWithPreferredLanguageWelsh() {
}

public boolean isWaitingForClaimantIntentDocUpload() {
return false;
return caseData.isRespondentResponseFullDefence()
&& caseData.getApplicant1ResponseDate() != null
&& caseData.getCcdState() == CaseState.AWAITING_APPLICANT_INTENTION
&& caseData.isClaimantBilingual();
}

@Override
Expand Down
Loading