Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file removed .DS_Store
Binary file not shown.
Binary file removed .github/.DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,5 @@ fastlane/readme.md
*custom-flavours.gradle

.DS_Store
./.DS_Store
./git/.DS_Store
Binary file removed claimManagement/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion claimManagement/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
minSdkVersion 26
targetSdkVersion 32
versionCode 4
versionName "2.3.4"
versionName "2.3.5"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5943,6 +5943,7 @@ input CreateClaimMutationInput {
items: [ClaimItemInputType]
services: [ClaimServiceInputType]
attachments: [ClaimAttachmentInputType]
source: String
clientMutationId: String
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ public String create(
+ " healthFacilityId: " + hfId
+ " program: " + programId
+ " visitType: \"" + claim.getVisitType() +"\""
+ " source: \"MOB\" "
+ fagepFields
+ " services: " + claimServices
+ " items: " + claimItems
Expand Down
Loading