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

Dfpl 2304 c110a Design changes to hearing urgency section #5772

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
f75aecd
add new hearing needed
chak-shing-lo-justice Nov 25, 2024
455b1bc
update template
chak-shing-lo-justice Dec 5, 2024
4978306
update docmosis
chak-shing-lo-justice Dec 6, 2024
45bc821
Merge branch 'master' into DFPL-2304
chak-shing-lo-justice Dec 6, 2024
91559c4
Merge branch 'master' into DFPL-2304
chak-shing-lo-justice Dec 9, 2024
da98ed5
update test
chak-shing-lo-justice Dec 9, 2024
07533d3
update FieldShowCondition
chak-shing-lo-justice Dec 9, 2024
78aab99
fix JsonDeserialize
chak-shing-lo-justice Dec 9, 2024
6901d16
update to string
chak-shing-lo-justice Dec 9, 2024
75342c9
Update HearingUrgencyCheckerIsStartedTest.java
chak-shing-lo-justice Dec 9, 2024
cb52a46
Update HearingUrgencyCheckerTest.java
chak-shing-lo-justice Dec 9, 2024
fc6e83b
Update Hearing.java
chak-shing-lo-justice Dec 9, 2024
e84e160
Update HearingUrgencyCheckerTest.java
chak-shing-lo-justice Dec 9, 2024
bcdb388
Merge branch 'master' into DFPL-2304
chak-shing-lo-justice Dec 10, 2024
6ec8847
fix unit test
chak-shing-lo-justice Dec 10, 2024
10e390a
Update Hearing.java
chak-shing-lo-justice Dec 10, 2024
a8a3f3e
Update Hearing.java
chak-shing-lo-justice Dec 10, 2024
2e7bbbd
Update Hearing.java
chak-shing-lo-justice Dec 10, 2024
fd33820
fix code scan
chak-shing-lo-justice Dec 10, 2024
7539eec
fix check style
chak-shing-lo-justice Dec 10, 2024
e04ae25
update e2e test data
chak-shing-lo-justice Dec 10, 2024
cb898fd
Update Hearing.json
chak-shing-lo-justice Dec 10, 2024
6115ca4
Update Hearing.json
chak-shing-lo-justice Dec 10, 2024
139c906
remove doc
chak-shing-lo-justice Dec 11, 2024
9449427
Update YesNo.java
chak-shing-lo-justice Dec 11, 2024
25dc4ab
Update case.json
chak-shing-lo-justice Dec 11, 2024
a9cc95a
fix expected
chak-shing-lo-justice Dec 11, 2024
6c95198
fix func test
chak-shing-lo-justice Dec 11, 2024
aaa1534
Update Hearing.json
chak-shing-lo-justice Dec 11, 2024
a181aad
Merge branch 'master' into DFPL-2304
Braimah101 Dec 12, 2024
48094ed
Merge branch 'master' into DFPL-2304
chak-shing-lo-justice Jan 10, 2025
a4f9328
DFPL-2304
Braimah101 Jan 22, 2025
9f20dc3
DFPL-2304
Braimah101 Jan 22, 2025
84b39b9
Merge branch 'master' into DFPL-2304
Braimah101 Jan 22, 2025
90babc9
Merge branch 'master' into DFPL-2304
Braimah101 Jan 22, 2025
13022e1
Merge branch 'master' into DFPL-2304
chak-shing-lo-justice Feb 12, 2025
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
fix unit test
  • Loading branch information
chak-shing-lo-justice committed Dec 10, 2024
commit 6ec88470512540dbb702e021844cce12b1b3e4b8
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private static List<DocmosisOtherParty> expectedDocmosisOtherParty() {

private static DocmosisHearing expectedDocmosisHearing() {
return DocmosisHearing.builder()
.timeFrame("Same day\nReason: Baby will be discharged from hospital on 21 June 2018")
.timeFrame("Urgent (not same day)\nReason: Baby will be discharged from hospital on 21 June 2018")
.withoutNoticeDetails("Yes\nReason: Notice without hearing needed")
.respondentsAware("Yes")
.respondentsAwareReason("They seek to care for baby in mother and baby unit")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@
"respondentsAware": "Yes",
"reducedNoticeReason": "Baby needs to be discharged from the hospital",
"withoutNoticeReason": "Notice without hearing needed",
"respondentsAwareReason": "They seek to care for baby in mother and baby unit"
"respondentsAwareReason": "They seek to care for baby in mother and baby unit",
"hearingUrgencyType": "URGENT",
"hearingUrgencyDetails": "Baby will be discharged from hospital on 21 June 2018"
},
"caseName": "test",
"children1": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@
"respondentsAware": "Yes",
"reducedNoticeReason": "Baby needs to be discharged from the hospital",
"withoutNoticeReason": "Notice without hearing needed",
"respondentsAwareReason": "They seek to care for baby in mother and baby unit"
"respondentsAwareReason": "They seek to care for baby in mother and baby unit",
"hearingUrgencyType": "URGENT",
"hearingUrgencyDetails": "Baby will be discharged from hospital on 21 June 2018"
},
"caseName": "${caseName:-test}",
"children1": [
Expand Down
Loading