Package it.pdor.contabilita.domain.hbm

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


  }

  public Operazione leggiOperazione(String codiceOperazione) throws ImpossibileLeggereOperazioneException {
    try {
      return (Operazione) getHibernateTemplate().get(Operazione.class,
          new OperazioneId(codiceOperazione, legalEntity, organizationUnit));
    } catch (DataAccessException e) {
      log("Impossibile Leggere Operazione: [CODICE]" + codiceOperazione);
      log("Impossibile Leggere Operazione: " + e);
      throw new ImpossibileLeggereOperazioneException();
    }
View Full Code Here


  public Operazione scriviOperazione(Operazione operazione) throws ImpossibileScrivereOperazioneException {
    operazione.getOperazioneId().setLegalEntity(legalEntity);
    operazione.getOperazioneId().setOrganizationUnit(organizationUnit);

    OperazioneId idOperazioneInserita = (OperazioneId) getHibernateTemplate().save(operazione);

    return (Operazione) getHibernateTemplate().get(Operazione.class, idOperazioneInserita);
  }
View Full Code Here

    assertEquals(dettaglioFatturaExpected.getCodiceVoceFattura(), dettaglioFatturaActual.getCodiceVoceFattura());
  }

  public void testRelazioneOperazioneVoceFattura() throws ImpossibileScrivereOperazioneException {
    String codiceOperazioneExpected = "PROVA";
    OperazioneId operazioneIdExpected = new OperazioneId(codiceOperazioneExpected, "", "");
    Operazione operazioneExpected = new Operazione(operazioneIdExpected, "");
    String codiceVoceFatturaExpected = "xx";
    VoceFatturaId voceFatturaIdExpected = new VoceFatturaId(codiceVoceFatturaExpected, "", "");
    VoceFattura voceFatturaExpected = new VoceFattura(voceFatturaIdExpected);
    String descrizioneVoceFatturaExpected = "descrizione";
View Full Code Here

  }

  public void testRelazioneOperazioneCausaleAntiMafia() throws ImpossibileScrivereOperazioneException,
      ImpossibileLeggereOperazioneException {
    String codiceOperazioneExpected = "PROVA";
    OperazioneId operazioneIdExpected = new OperazioneId(codiceOperazioneExpected, "", "");
    Operazione operazioneExpected = new Operazione(operazioneIdExpected, "");
    String codiceCausaleAntiMafiaExpected = "xx";
    CausaleAntiMafiaId causaleAntiMafiaIdExpected = new CausaleAntiMafiaId(codiceCausaleAntiMafiaExpected, "", "");
    CausaleAntiMafia causaleAntiMafiaExpected = new CausaleAntiMafia(causaleAntiMafiaIdExpected);
    String descrizioneCausaleAntiMafiaExpected = "descrizione";
View Full Code Here

TOP

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

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.