/* * 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.exemption; import org.egov.eis.entity.Assignment; import org.egov.eis.service.AssignmentService; import org.egov.eis.web.contract.WorkflowContainer; import org.egov.eis.web.controller.workflow.GenericWorkFlowController; import org.egov.infra.security.utils.SecurityUtils; import org.egov.ptis.client.util.PropertyTaxUtil; import org.egov.ptis.domain.dao.demand.PtDemandDao; import org.egov.ptis.domain.entity.property.Property; import org.egov.ptis.domain.entity.property.PropertyImpl; import org.egov.ptis.domain.entity.property.TaxExeptionReason; import org.egov.ptis.domain.service.exemption.TaxExemptionService; import org.egov.ptis.service.utils.PropertyTaxCommonUtils; import org.springframework.beans.factory.annotation.Autowired; 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; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.servlet.mvc.support.RedirectAttributes; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import java.util.List; import static org.egov.ptis.constants.PropertyTaxConstants.*; @Controller @RequestMapping(value = "/exemption/update/{id}") public class UpdateTaxExemptionController extends GenericWorkFlowController { protected static final String TAX_EXEMPTION_FORM = "taxExemption-form"; protected static final String TAX_EXEMPTION_SUCCESS = "taxExemption-success"; protected static final String TAX_EXEMPTION_VIEW = "taxExemption-view"; public static final String EDIT = "edit"; public static final String VIEW = "view"; private TaxExemptionService taxExemptionService; @Autowired public UpdateTaxExemptionController(TaxExemptionService taxExemptionService) { this.taxExemptionService = taxExemptionService; } private PropertyImpl property; private Boolean isExempted = Boolean.FALSE; @Autowired private PtDemandDao ptDemandDAO; @Autowired private PropertyTaxUtil propertyTaxUtil; @Autowired private SecurityUtils securityUtils; @Autowired protected AssignmentService assignmentService; @Autowired private PropertyTaxCommonUtils propertyTaxCommonUtils; @ModelAttribute public Property propertyModel(@PathVariable String id) { property = taxExemptionService.findByNamedQuery(QUERY_WORKFLOW_PROPERTYIMPL_BYID, Long.valueOf(id)); if (property == null) { property = taxExemptionService.findByNamedQuery(QUERY_PROPERTYIMPL_BYID, Long.valueOf(id)); } return property; } @SuppressWarnings("unchecked") @ModelAttribute("taxExemptionReasons") public List<TaxExeptionReason> getTaxExemptionReasons() { return taxExemptionService.getSession().createQuery("from TaxExeptionReason order by name").list(); } @RequestMapping(method = RequestMethod.GET) public String view(final Model model, @PathVariable final Long id, final HttpServletRequest request) { isExempted=property.getBasicProperty().getActiveProperty().getIsExemptedFromTax(); String userDesignationList = ""; final String currState = property.getState().getValue(); final String nextAction = property.getState().getNextAction(); userDesignationList=propertyTaxCommonUtils.getAllDesignationsForUser(securityUtils.getCurrentUser().getId()); model.addAttribute("stateType", property.getClass().getSimpleName()); model.addAttribute("currentState", property.getCurrentState().getValue()); prepareWorkflow(model, property, new WorkflowContainer()); model.addAttribute("userDesignationList", userDesignationList); model.addAttribute("designation", COMMISSIONER_DESGN); model.addAttribute("isExempted",isExempted); taxExemptionService.addModelAttributes(model, property.getBasicProperty()); if (currState.endsWith(WF_STATE_REJECTED) || nextAction.equalsIgnoreCase(WF_STATE_UD_REVENUE_INSPECTOR_APPROVAL_PENDING) || currState.endsWith(WFLOW_ACTION_NEW)) { model.addAttribute("mode", EDIT); return TAX_EXEMPTION_FORM; } else { model.addAttribute("mode", VIEW); return TAX_EXEMPTION_VIEW; } } @RequestMapping(method = RequestMethod.POST) public String update(@Valid @ModelAttribute Property property, final BindingResult errors, final RedirectAttributes redirectAttributes, final HttpServletRequest request, final Model model, @RequestParam String workFlowAction) { final Character status = STATUS_WORKFLOW; Long approvalPosition = 0l; String approvalComent = ""; String taxExemptedReason = ""; Property oldProperty = (PropertyImpl) property.getBasicProperty().getActiveProperty(); if (request.getParameter("approvalComent") != null) approvalComent = request.getParameter("approvalComent"); if (request.getParameter("workFlowAction") != null) workFlowAction = request.getParameter("workFlowAction"); if (request.getParameter("approvalPosition") != null && !request.getParameter("approvalPosition").isEmpty()) approvalPosition = Long.valueOf(request.getParameter("approvalPosition")); Boolean propertyByEmployee = Boolean.valueOf(request.getParameter("propertyByEmployee")); if (workFlowAction.equalsIgnoreCase(WFLOW_ACTION_STEP_APPROVE)) { property.setStatus(STATUS_ISACTIVE); oldProperty.setStatus(STATUS_ISHISTORY); } if (workFlowAction.equalsIgnoreCase(WFLOW_ACTION_STEP_NOTICE_GENERATE)) { return "redirect:/notice/propertyTaxNotice-generateSpecialNotice.action?basicPropId=" + property.getBasicProperty().getId() + "¬iceType=" + NOTICE_TYPE_SPECIAL_NOTICE + "¬iceMode=" + APPLICATION_TYPE_TAX_EXEMTION; } else { if (request.getParameter("mode").equalsIgnoreCase(VIEW)) { taxExemptionService.updateProperty(property, approvalComent, workFlowAction, approvalPosition, propertyByEmployee, EXEMPTION); } else { if (request.getParameter("taxExemptedReason") != null) taxExemptedReason = request.getParameter("taxExemptedReason"); taxExemptionService.saveProperty(property, oldProperty, status, approvalComent, workFlowAction, approvalPosition, taxExemptedReason, propertyByEmployee, EXEMPTION); } String successMessage = ""; Assignment assignment = new Assignment(); if(property!=null && property.getCreatedBy()!=null){ assignment = assignmentService.getPrimaryAssignmentForUser(property.getCreatedBy().getId()); } if (workFlowAction.equalsIgnoreCase(WFLOW_ACTION_STEP_APPROVE)) { if (taxExemptionService.isPropertyByEmployee(property)) { successMessage = "Property Exemption approved successfully and forwarded to " + assignment.getEmployee().getName().concat("~").concat(assignment.getPosition().getName()) + " with assessment number " + property.getBasicProperty().getUpicNo(); } else { successMessage = "Property Exemption approved successfully and forwarded to " + propertyTaxUtil.getApproverUserName(((PropertyImpl) property).getStateHistory().get(0) .getOwnerPosition().getId()) + " with assessment number " + property.getBasicProperty().getUpicNo(); } } else if (workFlowAction.equalsIgnoreCase(WFLOW_ACTION_STEP_REJECT)) { if (taxExemptionService.isPropertyByEmployee(property)) { successMessage = "Property Exemption rejected successfully and forwared to initiator " + assignment.getEmployee().getName().concat("~").concat(assignment.getPosition().getName()) + " with application number " + property.getApplicationNo(); } else { successMessage = "Property Exemption rejected successfully and forwared to initiator " + propertyTaxUtil.getApproverUserName(((PropertyImpl) property).getStateHistory().get(0) .getOwnerPosition().getId()) + " with application number " + property.getApplicationNo(); } } else successMessage = "Successfully forwarded to " + propertyTaxUtil.getApproverUserName(approvalPosition) + " with application number " + property.getApplicationNo(); model.addAttribute("successMessage", successMessage); return TAX_EXEMPTION_SUCCESS; } } }