Skip to content

Commit f7f774d

Browse files
authored
Merge branch 'develop-comores' into feature-33097
2 parents 152eb5f + b9de063 commit f7f774d

39 files changed

Lines changed: 5067 additions & 29 deletions

claimManagement/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
minSdkVersion 23
2828
targetSdkVersion 32
2929
versionCode 4
30-
versionName "1.2.3"
30+
versionName "1.2.4"
3131
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
3232
}
3333
buildTypes {

claimManagement/src/main/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@
115115
<activity
116116
android:name=".claimlisting.ClaimListingActivity"
117117
android:exported="false" />
118+
<activity
119+
android:name=".SubHouseholdActivity"
120+
android:label="Sous-famille"
121+
android:theme="@style/AppTheme.NoActionBar" />
118122
</application>
119123

120124
</manifest>
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
query GetFamiliesWithParent($parent_Uuid: String!, $first: Int, $after: String, $showHistory: Boolean) {
2+
families(parent_Uuid: $parent_Uuid, first: $first, after: $after, showHistory: $showHistory) {
3+
totalCount
4+
pageInfo {
5+
hasNextPage
6+
hasPreviousPage
7+
startCursor
8+
endCursor
9+
}
10+
edges {
11+
node {
12+
id
13+
uuid
14+
confirmationNo
15+
address
16+
parent {
17+
id
18+
uuid
19+
familyType {
20+
code
21+
}
22+
headInsuree {
23+
uuid
24+
}
25+
}
26+
headInsuree {
27+
id
28+
uuid
29+
chfId
30+
lastName
31+
otherNames
32+
gender {
33+
code
34+
}
35+
dob
36+
photo {
37+
id
38+
photo
39+
}
40+
}
41+
location {
42+
id
43+
uuid
44+
code
45+
name
46+
}
47+
}
48+
}
49+
}
50+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
query GetFamiliesWithParentId($parent_Id: String, $first: Int, $after: String, $showHistory: Boolean) {
2+
families(parent_Uuid: $parent_Id, first: $first, after: $after, showHistory: $showHistory) {
3+
totalCount
4+
pageInfo {
5+
hasNextPage
6+
hasPreviousPage
7+
startCursor
8+
endCursor
9+
}
10+
edges {
11+
node {
12+
id
13+
uuid
14+
confirmationNo
15+
address
16+
parent {
17+
id
18+
uuid
19+
familyType {
20+
code
21+
}
22+
headInsuree {
23+
uuid
24+
}
25+
}
26+
headInsuree {
27+
id
28+
uuid
29+
chfId
30+
lastName
31+
otherNames
32+
gender {
33+
code
34+
}
35+
dob
36+
photo {
37+
id
38+
photo
39+
}
40+
}
41+
location {
42+
id
43+
uuid
44+
code
45+
name
46+
}
47+
}
48+
}
49+
}
50+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
query GetFamilyMembers($familyUuid: String!) {
2+
familyMembers(familyUuid: $familyUuid) {
3+
edges {
4+
node {
5+
uuid
6+
chfId
7+
lastName
8+
otherNames
9+
gender {
10+
code
11+
gender
12+
}
13+
dob
14+
photo {
15+
id
16+
photo
17+
}
18+
relationship {
19+
id
20+
relation
21+
}
22+
family {
23+
uuid
24+
parent {
25+
uuid
26+
}
27+
}
28+
}
29+
}
30+
}
31+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
query GetFamilyTypes {
2+
familyTypes {
3+
code
4+
type
5+
sortOrder
6+
altLanguage
7+
}
8+
}
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
query GetFamilyWithType($uuid: String!) {
2+
families(uuid: $uuid, first: 1) {
3+
totalCount
4+
pageInfo {
5+
hasNextPage
6+
hasPreviousPage
7+
startCursor
8+
endCursor
9+
}
10+
edges {
11+
node {
12+
id
13+
uuid
14+
confirmationNo
15+
address
16+
familyType {
17+
code
18+
type
19+
sortOrder
20+
altLanguage
21+
}
22+
headInsuree {
23+
id
24+
uuid
25+
chfId
26+
lastName
27+
otherNames
28+
gender {
29+
code
30+
gender
31+
}
32+
dob
33+
photo {
34+
id
35+
photo
36+
}
37+
}
38+
location {
39+
id
40+
uuid
41+
code
42+
name
43+
}
44+
parent {
45+
id
46+
uuid
47+
familyType {
48+
code
49+
type
50+
}
51+
headInsuree {
52+
id
53+
uuid
54+
chfId
55+
lastName
56+
otherNames
57+
gender {
58+
code
59+
gender
60+
}
61+
dob
62+
photo {
63+
id
64+
photo
65+
}
66+
}
67+
}
68+
}
69+
}
70+
}
71+
}

claimManagement/src/main/graphql/org.openimis.imisclaim/GetInsureeInquire.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ query GetInsureeInquire($chfId: String) {
1111
gender {
1212
gender
1313
}
14+
family {
15+
uuid
16+
}
1417
photos {
1518
folder
1619
filename
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
query GetSubFamilyHeads($parent_Uuid: String, $parent_Id: ID, $first: Int, $after: String, $showHistory: Boolean) {
2+
families(parent_Uuid: $parent_Uuid, parent_Id: $parent_Id, first: $first, after: $after, showHistory: $showHistory) {
3+
totalCount
4+
pageInfo {
5+
hasNextPage
6+
hasPreviousPage
7+
startCursor
8+
endCursor
9+
}
10+
edges {
11+
node {
12+
id
13+
uuid
14+
confirmationNo
15+
address
16+
parent {
17+
id
18+
uuid
19+
familyType {
20+
code
21+
}
22+
headInsuree {
23+
uuid
24+
}
25+
}
26+
headInsuree {
27+
id
28+
uuid
29+
chfId
30+
lastName
31+
otherNames
32+
gender {
33+
code
34+
gender
35+
}
36+
dob
37+
photo {
38+
id
39+
photo
40+
}
41+
}
42+
location {
43+
id
44+
uuid
45+
code
46+
name
47+
}
48+
familyType {
49+
code
50+
type
51+
}
52+
}
53+
}
54+
}
55+
}

0 commit comments

Comments
 (0)