/* * 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.commons.dao; import org.egov.commons.Installment; import org.egov.infra.admin.master.entity.Module; import org.egov.infra.utils.DateUtils; import org.hibernate.Query; import org.hibernate.Session; import org.springframework.stereotype.Repository; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import java.io.Serializable; import java.util.Calendar; import java.util.Date; import java.util.List; @Repository public class InstallmentHibDao<T, id extends Serializable> implements InstallmentDao { @PersistenceContext private EntityManager entityManager; private Session getCurrentSession() { return entityManager.unwrap(Session.class); } @Override public List<Installment> getInsatllmentByModule(final Module module) { final Query qry = getCurrentSession().createQuery("from Installment I where I.module=:module order by installmentYear desc"); qry.setEntity("module", module); return qry.list(); } @Override public List getInsatllmentByModule(final Module module, final Date year) { final Query qry = getCurrentSession() .createQuery("from Installment I where I.module=:module and I.installmentYear=:year"); qry.setEntity("module", module); qry.setDate("year", year); return qry.list(); } @Override public Installment getInsatllmentByModule(final Module module, final Date year, final Integer installmentNumber) { final Query qry = getCurrentSession().createQuery( "from Installment I where I.module=:module and I.installmentYear=:year and I.installmentNumber =:instNum"); qry.setEntity("module", module); qry.setDate("year", year); qry.setInteger("instNum", installmentNumber); return (Installment) qry.uniqueResult(); } @Override public Installment getInsatllmentByModuleForGivenDate(final Module module, final Date installmentDate) { final Query qry = getCurrentSession() .createQuery("from Installment I where I.module=:module and (I.fromDate <= :fromYear and I.toDate >=:toYear)"); qry.setEntity("module", module); qry.setDate("fromYear", installmentDate); qry.setDate("toYear", installmentDate); return (Installment) qry.uniqueResult(); } @Override public List<Installment> getEffectiveInstallmentsforModuleandDate(final Date dateToCompare, final int noOfMonths, final Module mod) { final Query qry = getCurrentSession().createQuery( "from org.egov.commons.Installment inst where inst.toDate >= :dateToCompare and inst.toDate < :dateToComparemax and inst.module=:module"); qry.setDate("dateToCompare", dateToCompare); qry.setEntity("module", mod); final Date dateToComparemax = DateUtils.add(dateToCompare, Calendar.MONTH, noOfMonths); qry.setDate("dateToComparemax", dateToComparemax); return qry.list(); } @Override public Installment getInsatllmentByModuleForGivenDateAndInstallmentType(final Module module, final Date installmentDate, final String installmentType) { final Query qry = getCurrentSession().createQuery( "from Installment I where I.module=:module and (I.fromDate <= :fromYear and I.toDate >=:toYear) and I.installmentType = :installmentType"); qry.setEntity("module", module); qry.setDate("fromYear", installmentDate); qry.setDate("toYear", installmentDate); qry.setString("installmentType", installmentType); return (Installment) qry.uniqueResult(); } @Override public List<Installment> fetchInstallments(final Module module, final Date toInstallmentDate, final int noOfInstallmentToFetch) { final Query qry = getCurrentSession() .createQuery("from Installment I where I.module=:module and I.installmentYear<=:installmentYear order by installmentYear desc"); qry.setEntity("module", module); qry.setDate("installmentYear", toInstallmentDate); qry.setMaxResults(noOfInstallmentToFetch); return qry.list(); } @Override public List<Installment> getAllInstallmentsByModuleAndStartDate(final Module module, final Date currDate ) { final Query qry = getCurrentSession().createQuery(" select inst from Installment inst,CFinancialYear finYear where inst.module=:module and inst.fromDate >= (select fromDate from Installment " +" where module=:module and ((cast(:currDate as date)) between fromDate and toDate)) and cast(inst.toDate as date) <= cast(finYear.endingDate as date) " +" and now() between finYear.startingDate and finYear.endingDate order by inst.fromDate"); qry.setLong("module", module.getId()); qry.setDate("currDate", currDate); return qry.list(); } @Override public Installment fetchInstallmentByModuleAndInstallmentNumber(final Module module, final Integer installmentNumber) { return (Installment)getCurrentSession() .createQuery("from Installment I where I.module=:module and I.installmentNumber =:installmentNumber"). setEntity("module", module).setInteger("installmentNumber", installmentNumber).uniqueResult(); } @Override public Installment getInsatllmentByModuleAndDescription(Module module, String description) { return (Installment)getCurrentSession() .createQuery("from Installment I where I.module=:module and I.description =:description"). setEntity("module", module).setString("description", description).uniqueResult(); } public Installment findById(final int i, final boolean b) { return (Installment)getCurrentSession().get(Installment.class, i); } @Override public List<Installment> fetchPreviousInstallmentsInDescendingOrderByModuleAndDate(final Module module, final Date installmentDate, final int noOfInstallmentToFetch) { final Query qry = getCurrentSession() .createQuery("from Installment I where I.module=:module and I.toDate< :installmentDate order by fromDate desc"); qry.setEntity("module", module); qry.setDate("installmentDate", installmentDate); qry.setMaxResults(noOfInstallmentToFetch); return qry.list(); } }