We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1770a5c commit 8978be1Copy full SHA for 8978be1
1 file changed
claimManagement/src/main/java/org/openimis/imisclaims/EnquireActivity.java
@@ -44,6 +44,7 @@
44
45
import java.net.HttpURLConnection;
46
import java.util.ArrayList;
47
+import java.util.Collections;
48
import java.util.Date;
49
import java.util.HashMap;
50
import java.util.List;
@@ -331,6 +332,7 @@ public void renderResult(@Nullable Insuree insuree) {
331
332
}
333
334
ArrayList<Map<String, String>> PolicyList = new ArrayList<>();
335
+ Collections.reverse(insuree.getPolicies());
336
for (Policy policy : insuree.getPolicies()) {
337
HashMap<String, String> policyMap = new HashMap<>();
338
double iDedType = policy.getDeductibleType() != null ? policy.getDeductibleType() : 0;
0 commit comments