/* * 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.ptis.web.controller.transactions.editCollection; import static org.egov.ptis.client.util.PropertyTaxUtil.isZero; import static org.egov.ptis.constants.PropertyTaxConstants.DEMANDRSN_STR_PENALTY_FINES; import static org.egov.ptis.constants.PropertyTaxConstants.SOURCEOFDATA_DATAENTRY; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.List; import org.egov.commons.Installment; import org.egov.commons.dao.InstallmentHibDao; import org.egov.demand.dao.EgDemandDetailsDao; import org.egov.demand.model.EgDemandDetails; import org.egov.infra.utils.StringUtils; import org.egov.infstr.services.PersistenceService; import org.egov.ptis.bean.DemandDetail; import org.egov.ptis.domain.dao.property.BasicPropertyDAO; import org.egov.ptis.domain.entity.property.BasicPropertyImpl; import org.egov.ptis.domain.entity.property.PropertyReceipt; import org.egov.ptis.domain.service.property.PropertyReceiptService; import org.egov.ptis.service.utils.PropertyTaxCommonUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; /** * * @author subhash * */ @Controller @RequestMapping("/editCollection") public class EditCollectionController { private static final String EDIT_COLLECTION_FORM = "editCollection-form"; private static final String EDIT_COLLECTION_ACK = "editCollection-ack"; private static final String EDIT_COLLECTION_ERROR = "editCollection-error"; @Autowired private BasicPropertyDAO basicPropertyDAO; @Autowired private EgDemandDetailsDao demandDetailsDao; @Autowired private PropertyTaxCommonUtils propertyTaxCommonUtils; @SuppressWarnings("rawtypes") @Autowired @Qualifier("persistenceService") protected PersistenceService persistenceService; @Autowired @Qualifier("propertyReceiptService") private PropertyReceiptService propertyReceiptService; @Autowired private InstallmentHibDao installmentDao; private static final String QUERY_DEMAND_DETAILS = "select dd from Ptdemand ptd " + "left join ptd.egDemandDetails dd left join dd.egDemandReason dr left join ptd.egptProperty p left join p.basicProperty bp " + "where bp = ? and bp.active = true and p.status = 'A' and dd.amount > 0 and ptd.egInstallmentMaster = ? " + " and dr.egInstallmentMaster.finYearRange <> ?"; @SuppressWarnings("unchecked") @RequestMapping(value = "/editForm/{assessmentNo}", method = RequestMethod.GET) public String form(@ModelAttribute("demandDetailBeansForm") DemandDetailBeansForm demandDetailBeansForm, @PathVariable final String assessmentNo, Model model) { List<DemandDetail> demandDetailBeans = new ArrayList<DemandDetail>(); BasicPropertyImpl basicProperty = (BasicPropertyImpl) basicPropertyDAO.getBasicPropertyByPropertyID(assessmentNo); if (!basicProperty.isEligible()) { return EDIT_COLLECTION_ERROR; } List<EgDemandDetails> demandDetails = persistenceService.findAllBy(QUERY_DEMAND_DETAILS, basicProperty, propertyTaxCommonUtils.getCurrentInstallment(), propertyTaxCommonUtils.getCurrentInstallment().getFinYearRange()); if (!demandDetails.isEmpty()) { Collections.sort(demandDetails, new Comparator<EgDemandDetails>() { @Override public int compare(EgDemandDetails o1, EgDemandDetails o2) { return o1.getEgDemandReason().getEgInstallmentMaster() .compareTo(o2.getEgDemandReason().getEgInstallmentMaster()); } }); } if (!demandDetails.isEmpty()) { for (EgDemandDetails demandDetail : demandDetails) { Installment installment = demandDetail.getEgDemandReason().getEgInstallmentMaster(); String reasonMaster = demandDetail.getEgDemandReason().getEgDemandReasonMaster().getReasonMaster(); DemandDetail dmdDtl = createDemandDetailBean(installment, reasonMaster, demandDetail.getAmount(), demandDetail.getAmtCollected()); demandDetailBeans.add(dmdDtl); } } demandDetailBeansForm.setDemandDetailBeans(demandDetailBeans); demandDetailBeansForm.setBasicProperty(basicProperty); model.addAttribute("demandDetailBeans", demandDetailBeans); model.addAttribute("property", basicProperty.getActiveProperty()); model.addAttribute("basicProperty", basicProperty); return EDIT_COLLECTION_FORM; } @SuppressWarnings("unchecked") @RequestMapping(value = "/update", method = RequestMethod.POST) public String update(@ModelAttribute("demandDetailBeansForm") DemandDetailBeansForm demandDetailBeansForm, BindingResult errors, Model model) { errors = validate(demandDetailBeansForm, errors); BasicPropertyImpl basicProperty = (BasicPropertyImpl) basicPropertyDAO.getBasicPropertyByPropertyID(demandDetailBeansForm.getBasicProperty().getUpicNo()); if (errors.hasErrors()) { model.addAttribute("demandDetailBeans", demandDetailBeansForm.getDemandDetailBeans()); model.addAttribute("property", basicProperty.getActiveProperty()); model.addAttribute("basicProperty", basicProperty); return EDIT_COLLECTION_FORM; } Installment currentInstallment = propertyTaxCommonUtils.getCurrentInstallment(); List<EgDemandDetails> demandDetails = persistenceService.findAllBy(QUERY_DEMAND_DETAILS, basicProperty, currentInstallment, propertyTaxCommonUtils.getCurrentInstallment().getFinYearRange()); Boolean persistReceipt = Boolean.FALSE; for (EgDemandDetails dmdDetails : demandDetails) { for (DemandDetail dmdDetailBean : demandDetailBeansForm.getDemandDetailBeans()) { Boolean isUpdateAmount = Boolean.FALSE; Boolean isUpdateCollection = Boolean.FALSE; if (dmdDetailBean.getRevisedAmount() != null && dmdDetailBean.getInstallment().equals(dmdDetails.getEgDemandReason().getEgInstallmentMaster()) && dmdDetails.getEgDemandReason().getEgDemandReasonMaster().getReasonMaster() .equalsIgnoreCase(dmdDetailBean.getReasonMaster())) { isUpdateAmount = true; } if (dmdDetailBean.getRevisedCollection() != null && dmdDetails.getEgDemand().getEgInstallmentMaster().equals(currentInstallment) && dmdDetails.getEgDemandReason().getEgDemandReasonMaster().getReasonMaster() .equalsIgnoreCase(dmdDetailBean.getReasonMaster())) { if (dmdDetails.getEgDemandReason().getEgInstallmentMaster().equals(dmdDetailBean.getInstallment())) { isUpdateCollection = true; } } if (isUpdateAmount) { dmdDetails.setAmount(dmdDetailBean.getRevisedAmount() != null ? dmdDetailBean.getRevisedAmount() : BigDecimal.ZERO); } if (isUpdateCollection) { dmdDetails.setAmtCollected(dmdDetailBean.getRevisedCollection() != null ? dmdDetailBean .getRevisedCollection() : BigDecimal.ZERO); } if (isUpdateAmount || isUpdateCollection) { persistReceipt = Boolean.TRUE; dmdDetails.setModifiedDate(new Date()); demandDetailsDao.update(dmdDetails); break; } } } if (persistReceipt) { PropertyReceipt propertyReceipt = demandDetailBeansForm.getPropertyReceipt(); propertyReceipt.setSource(SOURCEOFDATA_DATAENTRY); propertyReceipt.setBasicProperty(basicProperty); propertyReceiptService.persist(propertyReceipt); } model.addAttribute("assessmentNo", basicProperty.getUpicNo()); return EDIT_COLLECTION_ACK; } private DemandDetail createDemandDetailBean(Installment installment, String reasonMaster, BigDecimal amount, BigDecimal amountCollected) { DemandDetail demandDetail = new DemandDetail(); demandDetail.setInstallment(installment); demandDetail.setReasonMaster(reasonMaster); demandDetail.setActualAmount(amount); demandDetail.setActualCollection(amountCollected); demandDetail.setIsCollectionEditable(true); return demandDetail; } private BindingResult validate(DemandDetailBeansForm demandDetailBeansForm, BindingResult errors) { Boolean editingCollection = Boolean.FALSE; int i = 0; BigDecimal totalRevisedCollection = BigDecimal.ZERO; BigDecimal totalActualCollection = BigDecimal.ZERO; for (DemandDetail dd : demandDetailBeansForm.getDemandDetailBeans()) { dd.setInstallment(installmentDao.findById(dd.getInstallment().getId(), false)); if (dd.getReasonMaster().equals(DEMANDRSN_STR_PENALTY_FINES)) { if (dd.getRevisedAmount() != null && dd.getRevisedCollection() != null) { if (dd.getRevisedCollection().compareTo(dd.getRevisedAmount()) > 0) { errors.rejectValue("demandDetailBeans[" + i + "].revisedAmount", "revised.collection.greater.than.reviseddemand"); errors.rejectValue("demandDetailBeans[" + i + "].revisedCollection", "revised.demand.less.than.revisedcollection"); } editingCollection = Boolean.TRUE; totalRevisedCollection = totalRevisedCollection.add(dd.getRevisedCollection()); totalActualCollection = totalActualCollection.add(dd.getActualCollection()); } else if (dd.getRevisedAmount() != null) { if (dd.getActualCollection().compareTo(dd.getRevisedAmount()) > 0) { errors.rejectValue("demandDetailBeans[" + i + "].revisedAmount", "actual.collection.greater.than.reviseddemand"); } editingCollection = Boolean.TRUE; } else if (dd.getRevisedCollection() != null) { if (dd.getRevisedCollection().compareTo(dd.getActualAmount()) > 0) { errors.rejectValue("demandDetailBeans[" + i + "].revisedCollection", "revised.collection.greater.than.actualdemand"); } editingCollection = Boolean.TRUE; totalRevisedCollection = totalRevisedCollection.add(dd.getRevisedCollection()); totalActualCollection = totalActualCollection.add(dd.getActualCollection()); } } else { if (null != dd.getRevisedCollection() && !isZero(dd.getRevisedCollection())) { if (dd.getRevisedCollection().compareTo(dd.getActualAmount()) > 0) { errors.rejectValue("demandDetailBeans[" + i + "].revisedCollection", "revised.collection.greater.than.actualdemand"); } editingCollection = Boolean.TRUE; totalRevisedCollection = totalRevisedCollection.add(dd.getRevisedCollection()); totalActualCollection = totalActualCollection.add(dd.getActualCollection()); } } i++; } if (editingCollection) { if (StringUtils.isBlank(demandDetailBeansForm.getPropertyReceipt().getRemarks())) { errors.rejectValue("propertyReceipt.remarks", "mandatory.message"); } if (StringUtils.isBlank(demandDetailBeansForm.getPropertyReceipt().getReceiptNumber())) { errors.rejectValue("propertyReceipt.receiptNumber", "mandatory.message"); } if (demandDetailBeansForm.getPropertyReceipt().getReceiptDate() == null) { errors.rejectValue("propertyReceipt.receiptDate", "mandatory.message"); } if (demandDetailBeansForm.getPropertyReceipt().getReceiptAmount() == null) { errors.rejectValue("propertyReceipt.receiptAmount", "mandatory.message"); } else { if (totalRevisedCollection.subtract(totalActualCollection).compareTo( demandDetailBeansForm.getPropertyReceipt().getReceiptAmount()) != 0) { errors.rejectValue("propertyReceipt.remarks", "error.receipt.amount"); } } } else if (!editingCollection) { errors.rejectValue("propertyReceipt.remarks", "error.collection.notmodified"); } return errors; } }