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-15614 - add obligations to notes tab #5930

Open
wants to merge 38 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
cdbbdd3
add confirm order review
laarmada Nov 14, 2024
255fa2f
add confirm order review
laarmada Nov 14, 2024
59a8308
add toggle
laarmada Nov 14, 2024
a0a1205
fix sonar coverage
laarmada Nov 14, 2024
0dbc401
Merge branch 'master' into CIV-15505_ConfirmOrderReview
mounikahmcts Nov 19, 2024
89978c7
Merge branch 'CIV-15505_ConfirmOrderReview' of https://github.com/hmc…
m-meulendijks-v1 Nov 20, 2024
a449e05
CIV-15720 - no obligation journey
m-meulendijks-v1 Nov 20, 2024
8fc157a
CIV-15720 - Add unit tests
m-meulendijks-v1 Nov 21, 2024
8d55186
CIV-15720 - refactor test for confirm order
m-meulendijks-v1 Nov 21, 2024
8322604
CIV-15720 delete notifications when case is stayed
kannan-v-hmcts Nov 18, 2024
25c2de7
CIV-15720 - checkstyle fixes
m-meulendijks-v1 Nov 21, 2024
c01491e
Merge branch 'feat/CIV-15720' into feat/CIV-15611
m-meulendijks-v1 Nov 21, 2024
1194b24
Update ServiceRequestAPIHandler.java
m-meulendijks-v1 Nov 21, 2024
afe1c91
CIV-15611 - confirm order test checkstyle fixes
m-meulendijks-v1 Nov 21, 2024
590a1f0
CIV-15611 - checkstyle fix
m-meulendijks-v1 Nov 21, 2024
5509558
CIV-15611 - flow state update
m-meulendijks-v1 Nov 21, 2024
b703039
CIV-15611 - change error format
m-meulendijks-v1 Nov 22, 2024
eb560ff
CIV-15611 - change confirmation header size
m-meulendijks-v1 Nov 22, 2024
6cd45db
Merge branch 'master' into feat/CIV-15611
m-meulendijks-v1 Nov 22, 2024
cdf28bc
CIV-15612 Obligation journey fields
miguelMolina3691 Nov 25, 2024
e86a566
CIV-15612 lint
miguelMolina3691 Nov 25, 2024
aac4c0c
Merge branch 'master' into feat/CIV-15612
miguelMolina3691 Nov 29, 2024
4f5e50f
Merge branch 'master' into feat/CIV-15612
miguelMolina3691 Dec 2, 2024
ce51da1
CIV-15612 obligation data screen
miguelMolina3691 Dec 2, 2024
c5303fd
CIV-15612 add storedObligationData
miguelMolina3691 Dec 2, 2024
a220d5b
CIV-15612 update test
miguelMolina3691 Dec 2, 2024
0f59d15
Merge branch 'master' into feat/CIV-15612
kannan-v-hmcts Dec 3, 2024
fbbdaad
Merge branch 'master' into feat/CIV-15612
miguelMolina3691 Dec 3, 2024
4e8997f
Merge branch 'master' into feat/CIV-15612
miguelMolina3691 Dec 10, 2024
5d0d1d8
Merge branch 'master' into feat/CIV-15612
miguelMolina3691 Dec 10, 2024
cfa4ce0
CIV-15612 add date validation
miguelMolina3691 Dec 12, 2024
b050189
CIV-15612 update
miguelMolina3691 Dec 12, 2024
26252b9
Merge branch 'master' into feat/CIV-15612
mounikahmcts Dec 13, 2024
ceaef4b
Merge branch 'master' into feat/CIV-15612
ss-evoco Dec 13, 2024
d50385f
Merge branch 'master' into feat/CIV-15612
ss-evoco Dec 13, 2024
1171531
CIV-15614 - Changes for obligation to show on case note tab
m-meulendijks-v1 Dec 16, 2024
1bcf1d2
CIV-15614 - fix checkstyle errors
m-meulendijks-v1 Dec 16, 2024
5a87620
Merge branch 'master' into feat/CIV-15614
m-meulendijks-v1 Dec 16, 2024
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
Prev Previous commit
Next Next commit
CIV-15611 - checkstyle fix
  • Loading branch information
m-meulendijks-v1 committed Nov 21, 2024
commit 590a1f053bcd6e700259284b5179f5b5107bfc3a
Original file line number Diff line number Diff line change
@@ -28,7 +28,6 @@
import static uk.gov.hmcts.reform.civil.callback.CaseEvent.CONFIRM_ORDER_REVIEW;
import static uk.gov.hmcts.reform.civil.enums.CourtStaffNextSteps.STILL_TASKS;


@Service
@RequiredArgsConstructor
public class ConfirmOrderReviewCallbackHandler extends CallbackHandler {
@@ -47,7 +46,6 @@ public class ConfirmOrderReviewCallbackHandler extends CallbackHandler {
"You must complete the tasks in the order before you can submit your order review \n\n" +
"Once you have completed the task you can submit your order review by clicking on the link on your task list.";


@Override
protected Map<String, Callback> callbacks() {

Loading