Skip to content

Commit

Permalink
CIV-8425 free form orders (#3019)
Browse files Browse the repository at this point in the history
* CIV-8425 removed variable freeFormRecitalTextArea

* CIV-8425 updated ccd variable name

* CIV-8425 removed docmosis template changes

---------

Co-authored-by: vasudevganesanhmcts <100689363+vasudevganesanhmcts@users.noreply.github.com>
  • Loading branch information
Azam-Hmcts and vasudevganesanhmcts committed Jul 24, 2023
1 parent b810130 commit 7bd6bdf
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
public enum OrderOnCourtsList {
ORDER_ON_COURT_INITIATIVE,
ORDER_WITHOUT_NOTICE,
NONE
NOT_APPLICABLE
}
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,6 @@ public boolean hasNoOngoingBusinessProcess() {

// judge final orders
private final FinalOrderSelection finalOrderSelection;
private final String freeFormRecitalTextArea;
private final String freeFormRecordedTextArea;
private final String freeFormOrderedTextArea;
private final FreeFormOrderValues orderOnCourtInitiative;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public class JudgeFinalOrderForm implements MappableObject {
private final String caseName;
private final String claimantReference;
private final String defendantReference;
private final String freeFormRecitalText;
private final String freeFormRecordedText;
private final String freeFormOrderedText;
private final OrderOnCourtsList orderOnCourtsList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ private JudgeFinalOrderForm getFreeFormOrder(CaseData caseData) {
? caseData.getSolicitorReferences().getApplicantSolicitor1Reference() : null)
.defendantReference(nonNull(caseData.getSolicitorReferences())
? caseData.getSolicitorReferences().getRespondentSolicitor1Reference() : null)
.freeFormRecitalText(caseData.getFreeFormRecitalTextArea())
.freeFormRecordedText(caseData.getFreeFormRecordedTextArea())
.freeFormOrderedText(caseData.getFreeFormOrderedTextArea())
.orderOnCourtsList(caseData.getOrderOnCourtsList())
Expand Down

0 comments on commit 7bd6bdf

Please sign in to comment.