Package it.pdor.contabilita.domain.hbm

Examples of it.pdor.contabilita.domain.hbm.MovimentoLegaleId


  public MovimentoLegale scriviMovimentoLegale(MovimentoLegale movimentoLegale)
      throws ImpossibileScrivereMovimentoLegaleException, ImpossibileLeggereMovimentoLegaleException {
    movimentoLegale.getMovimentoLegaleId().setLegalEntity(legalEntity);
    movimentoLegale.getMovimentoLegaleId().setOrganizationUnit(organizationUnit);

    MovimentoLegaleId idMovimentoLegaleId;

    try {
      idMovimentoLegaleId = (MovimentoLegaleId) getHibernateTemplate().save(movimentoLegale);
    } catch (DataAccessException e) {
      log("Impossibile Scrivere Movimento Legale " + e);
      throw new ImpossibileScrivereMovimentoLegaleException();
    }

    return leggiMovimentoLegale(idMovimentoLegaleId.getPratica(), idMovimentoLegaleId
        .getProgressivoMovimentolegale(), idMovimentoLegaleId.getRigaMovimentolegale());
  }
View Full Code Here


  public MovimentoLegale leggiMovimentoLegale(long pratica, long progressivoMovimentolegale, int rigaMovimentolegale)
      throws ImpossibileLeggereMovimentoLegaleException {
    try {
      return (MovimentoLegale) getHibernateTemplate().get(
          MovimentoLegale.class,
          new MovimentoLegaleId(pratica, progressivoMovimentolegale, rigaMovimentolegale, legalEntity,
              organizationUnit));
    } catch (DataAccessException e) {
      log("Impossibile Leggere Movimento Legale [PRATICA]" + pratica);
      log("Impossibile Leggere Movimento Legale [PRG MOV LEGALE]" + progressivoMovimentolegale);
      log("Impossibile Leggere Movimento Legale [RIGA MOV LEGALE]" + rigaMovimentolegale);
View Full Code Here

    }
  }

  @SuppressWarnings("unchecked")
  public void aggiungiRiga(ActionEvent ae) {
    MovimentoLegaleId movimentoLegaleId = new MovimentoLegaleId();
    PianoDeiConti pianoDeiConti = dettaglioMovimentoContabileBackingBean.getMovimentoContabile().getPianoDeiConti();
    movimentoLegaleId.setPratica(primaNotaController.cercaPraticaByPianoDeiConti(pianoDeiConti));
    movimentoLegaleId.setRigaMovimentolegale(1);
    MovimentoLegale movimentoLegale = new MovimentoLegale(movimentoLegaleId);
    movimentoLegale.setRiferimentoArticolo(dettaglioMovimentoContabileBackingBean.getMovimentoContabile()
        .getNumeroArticolo());
    movimentoLegale.setRiferimentoRigaArticolo(dettaglioMovimentoContabileBackingBean.getMovimentoContabile()
        .getProgressivoRigaArticolo());
View Full Code Here

    int retval = comparaOggettiPerNull(o1, o2);
    if (retval != 0) {
      return retval;
    }

    MovimentoLegaleId oid1 = o1.getMovimentoLegaleId();
    MovimentoLegaleId oid2 = o2.getMovimentoLegaleId();

    retval = comparaLong(oid1.getPratica(), oid2.getPratica());
    if (retval != 0) {
      return retval;
    }

    retval = comparaInteger(oid1.getRigaMovimentolegale(), oid2.getRigaMovimentolegale());
    if (retval != 0) {
      return retval;
    }

    retval = comparaLong(oid1.getProgressivoMovimentolegale(), oid2.getProgressivoMovimentolegale());
    if (retval != 0) {
      return retval;
    }

    return retval;
View Full Code Here

      final MovimentoLegale exp = listaExpected.get(indexMovimento);

      final String msgRiga = getMessaggioRiga(indexMovimento);

      {
        final MovimentoLegaleId idAct = act.getMovimentoLegaleId();
        final MovimentoLegaleId idExp = exp.getMovimentoLegaleId();

        assertEqualsNullLenient(msgRiga, idExp.getLegalEntity(), idAct.getLegalEntity());
        assertEqualsNullLenient(msgRiga, idExp.getOrganizationUnit(), idAct.getOrganizationUnit());
      }

      assertEqualsNullLenient(msgRiga, exp.getCausaleMovimentoLegale(), act.getCausaleMovimentoLegale());
      assertEqualsNullLenient(msgRiga, exp.getCodiceAzione(), act.getCodiceAzione());
      assertEqualsNullLenient(msgRiga, exp.getCodiceProvinciaIncasso(), act.getCodiceProvinciaIncasso());
View Full Code Here

    StringUtils.substring(descrizioneMovimento, 0, 60);
    long progressivoMovimentoLegale = contabilitaDao.staccaNumeroMovimentoLegale();

    MovimentoLegale movimentoLegale = new MovimentoLegale();

    MovimentoLegaleId movimentoLegaleId = new MovimentoLegaleId();
    movimentoLegaleId.setPratica(voce.getPratica());
    movimentoLegaleId.setProgressivoMovimentolegale(progressivoMovimentoLegale);
    movimentoLegaleId.setRigaMovimentolegale(1);
    movimentoLegale.setMovimentoLegaleId(movimentoLegaleId);
    movimentoLegale.setDataRegistrazione(dataRegistrazione);
    movimentoLegale.setFlagMora(causaleMovimentoLegale.getFlagMora());
    movimentoLegale.setCausaleMovimentoLegale(causaleMovimentoLegale.getCausaleMovimentolegale());
    movimentoLegale.setRiferimentoArticolo(numeroArticolo);
View Full Code Here

TOP

Related Classes of it.pdor.contabilita.domain.hbm.MovimentoLegaleId

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.