Skip to content

Commit

Permalink
pdf fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
snehal-gothe committed Apr 26, 2023
1 parent 879cbd9 commit 6900598
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,9 @@ public DemandPenaltyResponse getPenaltyDetails(@Valid GetBillCriteria getBillCri
}
}
}
DemandPenaltyResponse response = DemandPenaltyResponse.builder().totalApplicablePenalty(totalApplicablePenalty).demands(demands).build();
demands.stream().filter(i->i.getStatus().equals(Demand.StatusEnum.ACTIVE));
DemandPenaltyResponse response = DemandPenaltyResponse.builder().totalApplicablePenalty(totalApplicablePenalty).
demands(demands).build();
return response;
}

Expand Down

0 comments on commit 6900598

Please sign in to comment.