/* * 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.reports; import org.apache.commons.io.IOUtils; import org.egov.infra.admin.master.entity.Boundary; import org.egov.infra.admin.master.service.BoundaryService; import org.egov.ptis.constants.PropertyTaxConstants; import org.egov.ptis.domain.entity.property.PropertyUsage; import org.egov.ptis.master.service.PropertyUsageService; import org.hibernate.SQLQuery; import org.hibernate.Session; import org.hibernate.transform.Transformers; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.util.HashMap; import java.util.List; import java.util.Map; import static org.egov.infra.web.utils.WebUtils.toJSON; import static org.egov.ptis.constants.PropertyTaxConstants.BLOCK; import static org.egov.ptis.constants.PropertyTaxConstants.WARD; /** * * @author subhash * */ @Controller @RequestMapping(value = "/reports") public class NatureOfUsageReportController { private static final String NATURE_OF_USAGE_REPORT_FORM = "natureOfUsageReport-form"; private final NatureOfUsageResult natureOfUsageResult = new NatureOfUsageResult(); @PersistenceContext EntityManager entityManager; @Autowired private PropertyUsageService propertyUsageService; @Autowired private BoundaryService boundaryService; private String srchCriteria; @ModelAttribute("natureOfUsageResult") public NatureOfUsageResult natureOfUsageResultModel() { return natureOfUsageResult; } @ModelAttribute("natureOfUsages") public List<PropertyUsage> getNatureOfUsages() { return propertyUsageService.getAllActivePropertyUsages(); } @ModelAttribute("wards") public List<Boundary> getWards() { return boundaryService.getActiveBoundariesByBndryTypeNameAndHierarchyTypeName(WARD, PropertyTaxConstants.REVENUE_HIERARCHY_TYPE); } @ModelAttribute("blocks") public List<Boundary> getBlocks() { return boundaryService.getActiveBoundariesByBndryTypeNameAndHierarchyTypeName(BLOCK, PropertyTaxConstants.REVENUE_HIERARCHY_TYPE); } @RequestMapping(value = "/natureOfUsageReport-form", method = RequestMethod.GET) public String searchForm(final Model model) { return NATURE_OF_USAGE_REPORT_FORM; } @RequestMapping(value = "/natureOfUsageReportList", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public @ResponseBody void search(final HttpServletRequest request, final HttpServletResponse response, final Model model) throws IOException { final List<NatureOfUsageResult> natureOfUsageResultList = getReportResults(request); final StringBuilder natureOfUsageSONData = new StringBuilder("{ \"data\":").append(toJSON(natureOfUsageResultList, NatureOfUsageResult.class, NatureOfUsageReportAdaptor.class)) .append("}"); response.setContentType(MediaType.APPLICATION_JSON_VALUE); IOUtils.write(natureOfUsageSONData.toString(), response.getWriter()); } @SuppressWarnings("unchecked") private List<NatureOfUsageResult> getReportResults(final HttpServletRequest request) { final StringBuffer query = new StringBuffer( "select distinct pi.upicno \"assessmentNumber\", pi.ownersname \"ownerName\", pi.mobileno \"mobileNumber\", pi.houseno \"doorNumber\", pi.address \"address\", cast(pi.AGGREGATE_CURRENT_FIRSTHALF_DEMAND as numeric) \"halfYearTax\" " + "from egpt_mv_propertyInfo pi "); final StringBuffer whereQuery = new StringBuffer(" where pi.upicno is not null and pi.isactive = true "); final String natureOfUsage = request.getParameter("natureOfUsage"); final String ward = request.getParameter("ward"); final String block = request.getParameter("block"); final StringBuffer srchCriteria = new StringBuffer("Total number of properties with"); final Map<String, Object> params = new HashMap<String, Object>(); if (!(null == natureOfUsage || "-1".equals(natureOfUsage) || "".equals(natureOfUsage))) { final PropertyUsage propertyUsage = propertyUsageService.findById(Long.valueOf(natureOfUsage)); srchCriteria.append(" Nature of usage : " + propertyUsage.getUsageName()); query.append(",EGPT_MV_CURRENT_FLOOR_DETAIL fd "); whereQuery.append(" and fd.basicpropertyid = pi.basicpropertyid and fd.natureofusage = :natureOfUsage"); params.put("natureOfUsage", propertyUsage.getUsageName()); } if (!(null == ward || "-1".equals(ward) || "".equals(ward))) { final Boundary wardBndry = boundaryService.getBoundaryById(Long.valueOf(ward)); srchCriteria.append(" Ward : " + wardBndry.getName()); whereQuery.append(" and pi.wardid = :ward"); params.put("ward", Long.valueOf(ward)); } if (!(null == block || "-1".equals(block) || "".equals(block))) { final Boundary blockBndry = boundaryService.getBoundaryById(Long.valueOf(block)); srchCriteria.append(" Block : " + blockBndry.getName()); whereQuery.append(" and pi.blockid = :block"); params.put("block", Long.valueOf(block)); } final SQLQuery sqlQuery = getSession() .createSQLQuery( query.append(whereQuery).toString()); for (final String key : params.keySet()) sqlQuery.setParameter(key, params.get(key)); sqlQuery.setResultTransformer(Transformers.aliasToBean(NatureOfUsageResult.class)); final List<NatureOfUsageResult> results = sqlQuery.list(); srchCriteria.append(" are : " + results.size()); setSrchCriteria(srchCriteria.toString()); return results; } public Session getSession() { return entityManager.unwrap(Session.class); } public String getSrchCriteria() { return srchCriteria; } public void setSrchCriteria(final String srchCriteria) { this.srchCriteria = srchCriteria; } }