/*
* eGov suite of products aim to improve the internal efficiency,transparency,
* accountability and the service delivery of the government organizations.
*
* Copyright (C) <2015> eGovernments Foundation
*
* The updated version of eGov suite of products as by eGovernments Foundation
* is available at http://www.egovernments.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/ or
* http://www.gnu.org/licenses/gpl.html .
*
* In addition to the terms of the GPL license to be adhered to in using this
* program, the following additional terms are to be complied with:
*
* 1) All versions of this program, verbatim or modified must carry this
* Legal Notice.
*
* 2) Any misrepresentation of the origin of the material is prohibited. It
* is required that all modified versions of this material be marked in
* reasonable ways as different from the original version.
*
* 3) This license does not grant any rights to any user of the program
* with regards to rights under trademark law for use of the trade names
* or trademarks of eGovernments Foundation.
*
* In case of any queries, you can reach eGovernments Foundation at contact@egovernments.org.
*/
package org.egov.adtax.service;
import org.egov.adtax.entity.Advertisement;
import org.egov.adtax.repository.AdvertisementRepository;
import org.egov.adtax.search.contract.HoardingDcbReport;
import org.egov.adtax.service.penalty.AdvertisementPenaltyCalculator;
import org.egov.adtax.utils.constants.AdvertisementTaxConstants;
import org.egov.collection.integration.services.CollectionIntegrationService;
import org.egov.commons.Installment;
import org.egov.demand.model.EgDemand;
import org.egov.demand.model.EgDemandDetails;
import org.egov.demand.model.EgdmCollectedReceipt;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Service
@Transactional(readOnly = true)
public class AdvertisementReportService {
@Autowired
private AdvertisementRepository advertisementRepository;
@Autowired
private AdvertisementPenaltyCalculator advtPenaltyCalculator;
@Autowired
protected CollectionIntegrationService collectionIntegrationService;
public List<HoardingDcbReport> getHoardingWiseDCBResult(final Advertisement hoarding) {
List<HoardingDcbReport> HoardingDcbReportResults = new ArrayList<>();
Map<Installment, BigDecimal> penaltyAmountMap = new HashMap<Installment, BigDecimal>();
if (hoarding != null && hoarding.getDemandId() != null) {
penaltyAmountMap = advtPenaltyCalculator.getPenaltyByInstallment(hoarding.getActiveAdvertisementPermit());
final HashMap<String, HoardingDcbReport> hoardingwiseMap = new HashMap<String, HoardingDcbReport>();
HoardingDcbReport hoardingReport = new HoardingDcbReport();
for (EgDemandDetails demandDtl : hoarding.getDemandId().getEgDemandDetails()) {
final HoardingDcbReport hoardingDcbReportObj = hoardingwiseMap
.get(demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription());
if (hoardingDcbReportObj == null) {
hoardingReport = new HoardingDcbReport();
// hoardingReport.setInstallmentYear(demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription());
hoardingReport.setInstallmentYearDescription(
demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription());
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ARREAR_ADVERTISEMENTTAX)) {
hoardingReport.setArrearAmount(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN));
hoardingReport.setCollectedArrearAmount(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN));
}
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ADVERTISEMENTTAX) ||
demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ENCROCHMENTFEE)) {
hoardingReport.setDemandAmount(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN));
hoardingReport.setCollectedDemandAmount(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN));
}
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_PENALTY)) {
hoardingReport.setPenaltyAmount(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN));
hoardingReport.setCollectedPenaltyAmount(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN));
}
hoardingwiseMap.put(demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription(), hoardingReport);
} else {
hoardingReport = hoardingwiseMap.get(demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription());
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ARREAR_ADVERTISEMENTTAX)) {
hoardingReport.setArrearAmount(hoardingReport.getArrearAmount().add(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN)));
hoardingReport.setCollectedArrearAmount(
hoardingReport.getCollectedArrearAmount().add(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN)));
}
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ADVERTISEMENTTAX) ||
demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_ENCROCHMENTFEE)) {
hoardingReport.setDemandAmount(hoardingReport.getDemandAmount().add(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN)));
hoardingReport.setCollectedDemandAmount(
hoardingReport.getCollectedDemandAmount().add(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN)));
}
if (demandDtl.getEgDemandReason().getEgDemandReasonMaster().getCode()
.equalsIgnoreCase(AdvertisementTaxConstants.DEMANDREASON_PENALTY)) {
hoardingReport.setPenaltyAmount(hoardingReport.getPenaltyAmount() != null
? hoardingReport.getPenaltyAmount().add(demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN))
:demandDtl.getAmount().setScale(2, BigDecimal.ROUND_HALF_EVEN));
hoardingReport.setCollectedPenaltyAmount(hoardingReport.getCollectedPenaltyAmount() != null
? hoardingReport.getCollectedPenaltyAmount().add(demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN))
: demandDtl.getAmtCollected().setScale(2, BigDecimal.ROUND_HALF_EVEN));
}
hoardingwiseMap.put(demandDtl.getEgDemandReason().getEgInstallmentMaster().getDescription(), hoardingReport);
}
}
Map<Date, String> collectedReceiptMap = new HashMap<Date, String>();
StringBuffer receiptNumber = new StringBuffer();
for (EgDemandDetails demandDtl : hoarding.getDemandId().getEgDemandDetails()) {
for (EgdmCollectedReceipt collRecpt : demandDtl.getEgdmCollectedReceipts()) {
if (!collRecpt.isCancelled()) {
receiptNumber.append(collRecpt.getReceiptNumber()).append(" ");
collectedReceiptMap.put(collRecpt.getReceiptDate(), collRecpt.getReceiptNumber());
}
}
}
hoardingReport.setCollectReceiptMap(collectedReceiptMap);
for (Map.Entry<Installment, BigDecimal> penaltyMap : penaltyAmountMap.entrySet()) {
if (hoardingwiseMap.containsKey(penaltyMap.getKey().getDescription())) {
hoardingwiseMap.get(penaltyMap.getKey().getDescription()).setPenaltyAmount(hoardingwiseMap
.get(penaltyMap.getKey().getDescription()).getPenaltyAmount().add(penaltyMap.getValue()));
}
}
if (hoardingwiseMap.size() > 0) {
hoardingwiseMap.forEach((key, value) -> {
HoardingDcbReportResults.add(value);
});
}
}
return HoardingDcbReportResults;
}
public Advertisement findByAdvertisementNumber(final String hoardingNumber) {
return advertisementRepository.findByAdvertisementNumber(hoardingNumber);
}
public Advertisement findBy(final Long hoardingId) {
return advertisementRepository.findOne(hoardingId);
}
public Advertisement getAdvertisementByDemand(final EgDemand demand) {
return advertisementRepository.findByDemandId(demand);
}
}