Package ecar.pojo

Examples of ecar.pojo.PeriodoRevisaoPrev


    List periodos = this.listar(PeriodoRevisaoPrev.class, new String[]{"dtInicioPrev", "ASC"});
    if (!periodos.equals(null) && periodos.size() > 0){
      Iterator itPeriodos = periodos.iterator();
      while (itPeriodos.hasNext())
      {
        PeriodoRevisaoPrev prev = (PeriodoRevisaoPrev) itPeriodos.next();
        if (!prevComp.equals(prev))
        {
          if (((!dtInicio.before(prev.getDtInicioPrev())) && (!dtInicio.after(prev.getDtFimPrev())))
             || ((!dtFim.before(prev.getDtInicioPrev())) && (!dtFim.after(prev.getDtFimPrev()))))
            return true;
        }
      }
    }
    return false;
View Full Code Here


    List periodos = this.listar(PeriodoRevisaoPrev.class, new String[]{"dtInicioPrev", "ASC"});
    if (!periodos.equals(null) && periodos.size() > 0){
      Iterator itPeriodos = periodos.iterator();
      while (itPeriodos.hasNext())
      {
        PeriodoRevisaoPrev prev = (PeriodoRevisaoPrev) itPeriodos.next();
        if (!(data.before(prev.getDtInicioPrev())) && (!data.after(prev.getDtFimPrev())))
        {
          return true;
        }
      }
    }
View Full Code Here

   * @throws ECARException
   */
  public PeriodoRevisaoPrev getPeriodoAtual() throws ECARException
  {
    List periodos = this.listar(PeriodoRevisaoPrev.class, new String[]{"dtInicioPrev", "ASC"});
    PeriodoRevisaoPrev prev = new PeriodoRevisaoPrev();
    if (!periodos.equals(null) && periodos.size() > 0){
      Iterator itPeriodos = periodos.iterator();
      while (itPeriodos.hasNext())
      {
        prev = (PeriodoRevisaoPrev) itPeriodos.next();
        Date hoje = Data.getDataAtual();
        if ((!hoje.before(prev.getDtInicioPrev())) && (!hoje.after(prev.getDtFimPrev())))
        {
          return prev;
        }
      }
    }
View Full Code Here

         * @return
         * @throws ECARException
         */
        public boolean estaNoPeriodoAtual(Date data) throws ECARException
  {
    PeriodoRevisaoPrev prev = this.getPeriodoAtual();
    if ((!data.before(prev.getDtInicioPrev())) && (!data.after(prev.getDtFimPrev()))){
      return true;
    }
    return false;
  }
View Full Code Here

        super.inicializarLogBean();

            tx = session.beginTransaction();

          for (int i = 0; i < codigosParaExcluir.length; i++) {
              PeriodoRevisaoPrev prev = (PeriodoRevisaoPrev) buscar(PeriodoRevisaoPrev.class, Long.valueOf(codigosParaExcluir[i]));
              session.delete(prev);
        objetos.add(prev);
          }
   
      tx.commit();
View Full Code Here

TOP

Related Classes of ecar.pojo.PeriodoRevisaoPrev

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.