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-14895 WA task to take case offline after set aside in error or defence received #4744

Merged
merged 6 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ccd-definition/CaseEvent/User/UserEvents-JO-nonprod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"CallBackURLSubmittedEvent": "${CCD_DEF_CASE_SERVICE_BASE_URL}/cases/callbacks/submitted",
"RetriesTimeoutAboutToStartEvent": 0,
"RetriesTimeoutURLAboutToSubmitEvent": 0,
"Publish": "Y",
"EventEnablingCondition": "joIsLiveJudgmentExists = \"Yes\" AND CaseAccessCategory=\"SPEC_CLAIM\" AND activeJudgment.type = \"DEFAULT_JUDGMENT\""
},
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[
{
"CaseTypeID": "CIVIL",
"CaseEventID": "SET_ASIDE_JUDGMENT",
"CaseFieldID": "featureToggleWA",
"PageDisplayOrder": 1,
"PageFieldDisplayOrder": 1,
"DisplayContext": "READONLY",
"PageID": "WorkAllocation",
"PageShowCondition": "joSetAsideReason=\"DO NOT SHOW IN UI\"",
"ShowSummaryChangeOption": "N",
"Publish": "Y"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Scenario('SetAside Default Judgment after judgment error - Spec claim 1v1 - Case
await api_spec.defaultJudgmentSpec(config.applicantSolicitorUser, mpScenario, false);
console.log('--setAsideJudgment--');
console.log(` user : ${caseWorkerUser.email} : config.testEarlyAdopterCourts : ${config.testEarlyAdopterCourts}`);
await api_spec.setAsideJudgment(config.hearingCenterAdminWithRegionId2, 'JUDGMENT_ERROR','ORDER_AFTER_DEFENCE','PROCEEDS_IN_HERITAGE_SYSTEM');
await api_spec.setAsideJudgment(config.hearingCenterAdminWithRegionId2, 'JUDGMENT_ERROR','ORDER_AFTER_DEFENCE','All_FINAL_ORDERS_ISSUED');
}
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Scenario('Default judgment Spec claim 1v2 - Set Aside after defence - Case taken
await api_spec.amendRespondent1ResponseDeadline(config.systemupdate);
await api_spec.defaultJudgmentSpec(config.applicantSolicitorUser, mpScenario, false);
console.log('--setAsideJudgment--');
await api_spec.setAsideJudgment(config.hearingCenterAdminWithRegionId2, 'JUDGE_ORDER', 'ORDER_AFTER_DEFENCE', 'PROCEEDS_IN_HERITAGE_SYSTEM');
await api_spec.setAsideJudgment(config.hearingCenterAdminWithRegionId2, 'JUDGE_ORDER', 'ORDER_AFTER_DEFENCE', 'All_FINAL_ORDERS_ISSUED');
}
});

Expand Down
Loading