Skip to content

Commit 48b6f26

Browse files
authored
Merge pull request #58 from mngoe/feature-35086
add source in graphql
2 parents 7123c48 + f1441ed commit 48b6f26

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

claimManagement/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
minSdkVersion 26
2828
targetSdkVersion 32
2929
versionCode 4
30-
versionName System.getenv("APP_VERSION") ?: "2.3.8"
30+
versionName System.getenv("APP_VERSION") ?: "2.3.9"
3131
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
3232
}
3333
buildTypes {

claimManagement/src/main/graphql/org.openimis.imisclaim/schema.graphqls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5943,6 +5943,7 @@ input CreateClaimMutationInput {
59435943
items: [ClaimItemInputType]
59445944
services: [ClaimServiceInputType]
59455945
attachments: [ClaimAttachmentInputType]
5946+
source: String
59465947
clientMutationId: String
59475948
}
59485949

claimManagement/src/main/java/org/openimis/imisclaims/network/request/CreateClaimGraphQLRequest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ public String create(
138138
+ " dateClaimed: \"" + DateUtils.toDateString(claim.getDateClaimed()) + "\""
139139
+ " healthFacilityId: " + hfId
140140
+ " program: " + programId
141+
+ " source: \"MOB\" "
141142
+ " visitType: \"" + claim.getVisitType() +"\""
142143
+ fagepFields
143144
+ " services: " + claimServices

0 commit comments

Comments
 (0)