This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #799 from egovernments/PenaltyFix-5638
PFM-5638: Added changes for penalty as well as UI and PDF issues res…
- Loading branch information
Showing
25 changed files
with
1,057 additions
and
44 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...s/billing-service/src/main/java/org/egov/demand/model/AggregatedDemandDetailResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package org.egov.demand.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.*; | ||
|
||
import javax.validation.constraints.NotNull; | ||
import java.math.BigDecimal; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
@Getter | ||
@Setter | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Builder | ||
public class AggregatedDemandDetailResponse { | ||
|
||
private List<Map<Long , List<DemandDetail>>> mapOfDemandDetailList; | ||
|
||
private BigDecimal advanceAvailable; | ||
|
||
private BigDecimal advanceAdjusted; | ||
|
||
private BigDecimal remainingAdvance; | ||
|
||
private BigDecimal currentmonthBill; | ||
|
||
private BigDecimal currentMonthPenalty; | ||
|
||
private BigDecimal currentmonthTotalDue; | ||
|
||
private BigDecimal totalAreas; | ||
|
||
private BigDecimal totalAreasWithPenalty; | ||
|
||
private BigDecimal netdue; | ||
|
||
private BigDecimal netDueWithPenalty; | ||
|
||
private BigDecimal totalApplicablePenalty; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.