Skip to content
Open
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 modified .DS_Store
Binary file not shown.
Binary file modified claimManagement/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

import java.net.HttpURLConnection;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
Expand Down Expand Up @@ -301,6 +302,7 @@ public void renderResult(@Nullable Insuree insuree) {
}

ll.setVisibility(View.VISIBLE);
lv.setNestedScrollingEnabled(true);

if (!etCHFID.getText().toString().trim().equals(insuree.getChfId()))
return;
Expand Down Expand Up @@ -331,6 +333,7 @@ public void renderResult(@Nullable Insuree insuree) {
}

ArrayList<Map<String, String>> PolicyList = new ArrayList<>();
Collections.reverse(insuree.getPolicies());
for (Policy policy : insuree.getPolicies()) {
HashMap<String, String> policyMap = new HashMap<>();
double iDedType = policy.getDeductibleType() != null ? policy.getDeductibleType() : 0;
Expand Down