Package it.pdor.contabilita.domain.hbm

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


      mastro.setDescrizioneMastro("descrizione Mastro Fake");
      contabilitaFacadeFake.setMastro(mastro);

      List<Conto> listaConti = new ArrayList<Conto>();

      Conto conto1 = new Conto();
      conto1.setDescrizioneConto("descrizione Conto Fake 1");
      listaConti.add(conto1);

      contabilitaFacadeFake.setListaConti(listaConti);

      schedaContoAction.setContabilitaFacade(contabilitaFacadeFake);
View Full Code Here


    Mastro mastro = new Mastro();
    mastro.setDescrizioneMastro("descrizione Mastro Fake");
    contabilitaFacadeFake.setMastro(mastro);

    List<Conto> listaConti = new ArrayList<Conto>();
    Conto conto1 = new Conto();
    conto1.setDescrizioneConto("descrizione Conto Fake 1");
    listaConti.add(conto1);
    contabilitaFacadeFake.setListaConti(listaConti);
    schedaContoAction.setContabilitaFacade(contabilitaFacadeFake);
    schedaContoAction.setSchedaContoIn(schedaContoIn);
View Full Code Here

    Mastro mastro = new Mastro();
    mastro.setDescrizioneMastro("descrizione Mastro Fake");
    contabilitaFacadeFake.setMastro(mastro);

    List<Conto> listaConti = new ArrayList<Conto>();
    Conto conto1 = new Conto();
    conto1.setDescrizioneConto("descrizione Conto Fake 1");
    listaConti.add(conto1);
    contabilitaFacadeFake.setListaConti(listaConti);
    schedaContoAction.setContabilitaFacade(contabilitaFacadeFake);
    schedaContoAction.setSchedaContoIn(schedaContoIn);
View Full Code Here

    String descrizioneBreveConto = StringUtils.substring(descrizioneConto, 0, 15);

    long numeroConto = contabilitaDao.staccaNumeroConto();
    ContoId contoId = new ContoId();
    contoId.setNumeroConto(numeroConto);
    Conto conto = new Conto(contoId, pianoDeiConti);
    conto.setDescrizioneConto(descrizioneConto);
    conto.setDescrizioneBreveConto(descrizioneBreveConto);

    conto.setDataInizioValidita(dataRegistrazione);
    conto.setDataFineValidita(null);

    contabilitaDao.scriviConto(conto);
  }
View Full Code Here

    } catch (DataAccessException e) {
      log("Impossibile Scrivere Conto [NROCONTO] " + conto.getContoId().getNumeroConto());
      log("Impossibile Scrivere Conto " + e);
      throw new ImpossibileScrivereContoException();
    }
    Conto nuovoConto;
    try {
      nuovoConto = (Conto) getHibernateTemplate().get(Conto.class, idContoInserito);
    } catch (DataAccessException e) {
      throw new ImpossibileLeggereContoException();
    }
View Full Code Here

  protected void preparaDatiPerBackingBeanDestinazione() {
    popupRicercaConto.closePopup();

    OggettoSceltoBean oggettoSceltoBean = (OggettoSceltoBean) getBeanDestinazione();
    Conto contoScelto = ((RowConto) getListaRighe().getSelectedRow()).getConto();

    if (isGruppoMastroContoValorizzati()) {
      oggettoSceltoBean.propagaAggiornamento(getBeanSuCuiPropagare(), getNomeMetodoGruppo(), contoScelto
          .getPianoDeiConti().getCodiceGruppo());
      oggettoSceltoBean.propagaAggiornamento(getBeanSuCuiPropagare(), getNomeMetodoMastro(), contoScelto
          .getPianoDeiConti().getCodiceMastro());
      oggettoSceltoBean.propagaAggiornamento(getBeanSuCuiPropagare(), getNomeMetodoConto(), contoScelto
          .getPianoDeiConti().getCodiceConto());
    } else {
      ((OggettoSceltoBean) getBeanDestinazione()).propagaAggiornamento(getBeanSuCuiPropagare(), getNomeMetodo(),
          contoScelto.getPianoDeiConti().getCodiceConto());

    }

  }
View Full Code Here

      throw new NoDataFoundException();
    }
   
    List<Conto> result = new ArrayList<Conto>();
    for (Object oggetto : oggetti) {
      Conto conto = (Conto) oggetto;
      result.add(conto);
    }
   
    return result;
  }
View Full Code Here

    getListaRighe().setToSortDefault(false);
  }

  @Override
  protected void compilaParametriRicerca() {
    Conto selectedConto = (Conto) getListaRighe().getSelectedRow();
    Long codiceConto = selectedConto.getPianoDeiConti().getCodiceConto();
    String descrizioneConto = selectedConto.getDescrizioneConto();
    String flagPartitario = selectedConto.getMastro().getFlagPartitario();
    RicercaPartiteAction ricercaPartiteAction = (RicercaPartiteAction) getBackingBeanRicerca();
    ricercaPartiteAction.impostaFiltro(codiceConto, descrizioneConto, flagPartitario);
    ricercaPartiteAction.impostaDettaglioMovimentoContabileBackingBean(null);
  }
View Full Code Here

  public void preparaDatiPartitario() {
    if (getSelectedRowMovimentoContabile().getListaRighePartite() == null) {
      getSelectedRowMovimentoContabile().setListaRighePartite(new ListaRighe());
      recuperaContoEImpostaPartiteDelConto(getSelectedRowMovimentoContabile());
    } else {
      Conto selectedConto = recuperaConto(getSelectedRowMovimentoContabile().getMovimentoContabile());
      Long codiceConto = selectedConto.getPianoDeiConti().getCodiceConto();
      String descrizioneConto = selectedConto.getDescrizioneConto();
      String flagPartitario = selectedConto.getMastro().getFlagPartitario();
      listaRighePartiteBackingBean.setContoUsatoPerFiltro(codiceConto, descrizioneConto, flagPartitario);
    }
    listaRighePartiteBackingBean.setDettaglioMovimentoContabileBackingBean(getDettaglioMovimentoContabileBackingBean());
    listaRighePartiteBackingBean.setListaRighe(getSelectedRowMovimentoContabile().getListaRighePartite());
    long numeroArticolo = getSelectedRowMovimentoContabile().getMovimentoContabile().getNumeroArticolo();
View Full Code Here

    listaRighePartiteBackingBean.preparaDatiPerBackingBeanDestinazione();
    listaRighePartiteBackingBean.setNumeroRata(0);
  }

  public void riPreparaDatiPartitario() {
    Conto conto = recuperaConto(getSelectedRowMovimentoContabile().getMovimentoContabile());
    riPreparaDatiPartitario(conto);
  }
View Full Code Here

TOP

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

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.