Skip to content

Commit bc5b674

Browse files
authored
Merge pull request #59 from mngoe/feature-35086-new
add source in graphql
2 parents e5c2019 + 15d3a7a commit bc5b674

7 files changed

Lines changed: 5 additions & 1 deletion

File tree

.DS_Store

-8 KB
Binary file not shown.

.github/.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,5 @@ fastlane/readme.md
8282
*custom-flavours.gradle
8383

8484
.DS_Store
85+
./.DS_Store
86+
./git/.DS_Store

claimManagement/.DS_Store

-6 KB
Binary file not shown.

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 "2.3.4"
30+
versionName "2.3.5"
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
@@ -139,6 +139,7 @@ public String create(
139139
+ " healthFacilityId: " + hfId
140140
+ " program: " + programId
141141
+ " visitType: \"" + claim.getVisitType() +"\""
142+
+ " source: \"MOB\" "
142143
+ fagepFields
143144
+ " services: " + claimServices
144145
+ " items: " + claimItems

0 commit comments

Comments
 (0)