Package it.pdor.webapp.common

Examples of it.pdor.webapp.common.ListaRighe


    }
  }

  private void preparaDatiMovimentiIva() {
    if (getSelectedRowMovimentoContabile().getListaRigheMovIva() == null) {
      getSelectedRowMovimentoContabile().setListaRigheMovIva(new ListaRighe());
      impostaMovimentiIvaDelMovimentoContabile(getSelectedRowMovimentoContabile());
    }
    listaRigheMovIvaBackingBean.setListaRighe(getSelectedRowMovimentoContabile().getListaRigheMovIva());
    listaRigheMovIvaBackingBean.selezionaPrimaRiga();
  }
View Full Code Here


    rowMovCont.getListaRigheMovIva().setRighe(righeMovimentiIva);
  }

  private void preparaDatiAntiMafia() {
    if (getSelectedRowMovimentoContabile().getListaRigheAntiMafia() == null) {
      getSelectedRowMovimentoContabile().setListaRigheAntiMafia(new ListaRighe());
      impostaAntiMafiaDelMovimentoContabile(getSelectedRowMovimentoContabile());
    }
    listaRigheAntiMafiaBackingBean.setListaRighe(getSelectedRowMovimentoContabile().getListaRigheAntiMafia());
    listaRigheAntiMafiaBackingBean.selezionaPrimaRiga();
    listaRigheAntiMafiaBackingBean.preparaDatiPerBackingBeanDestinazione();
View Full Code Here

    rowMovCont.getListaRigheAntiMafia().setRighe(righeAntiMafia);
  }

  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();
View Full Code Here

    else {
      ricercaPartiteAction.impostaFiltro(conto.getPianoDeiConti().getCodiceConto(), conto.getDescrizioneConto(), conto.getMastro().getFlagPartitario());
      List<RowPartita> righePartite;
      try {
        righePartite = ricercaPartiteAction.ricerca();
        ListaRighe nuovaListaRighePartite = new ListaRighe();
        nuovaListaRighePartite.setRighe(righePartite);
        mappaListaRighePartite.put(chiaveConto, nuovaListaRighePartite);
        rowMovCont.setListaRighePartite(nuovaListaRighePartite);
      } catch (NoSearchParameterException e) {
        rowMovCont.getListaRighePartite().inizializza();
      } catch (NoDataFoundException e) {
View Full Code Here

    }
  }

  private void preparaDatiMovimentiLegali() {
    if (getSelectedRowMovimentoContabile().getListaRigheMovLeg() == null) {
      getSelectedRowMovimentoContabile().setListaRigheMovLeg(new ListaRighe());
      impostaMovimentiLegaliDelMovimentoContabile(getSelectedRowMovimentoContabile());
    }
    listaRigheMovLegBackingBean.setListaRighe(getSelectedRowMovimentoContabile().getListaRigheMovLeg());
    listaRigheMovLegBackingBean.selezionaPrimaRiga();
    listaRigheMovLegBackingBean.preparaDatiPerBackingBeanDestinazione();
View Full Code Here

 
  public void ripulisci(ActionEvent ae){
   
    setDettaglioVisibile(false);
   
    listaRigheTotaliMovimenti=new ListaRighe();
    listaRigheTotaliIva=new ListaRighe();
    listaRigheControlliIva=new ListaRighe();
    listaRigheControlliQuadraturaIva=new ListaRighe();
    listaRigheContiModificati=new ListaRighe();
   
    // default
    this.setDataUltimoConsolidamento(parametriContabili.getDataConsolidatoCorrente());
    this.setAnnoEsercizioSelected(getParametriContabili().getAnnoCorrente().toString());
    this.setDataNuovoConsolidamento(null);
View Full Code Here

 
  private void azzera(){
   
    setDettaglioVisibile(false);
   
    listaRigheTotaliMovimenti=new ListaRighe();
    listaRigheTotaliIva=new ListaRighe();
    listaRigheControlliIva=new ListaRighe();
    listaRigheControlliQuadraturaIva=new ListaRighe();
    listaRigheContiModificati=new ListaRighe();
   
    // default
    this.setDataUltimoConsolidamento(parametriContabili.getDataConsolidatoCorrente());
    this.setAnnoEsercizioSelected(getParametriContabili().getAnnoCorrente().toString());
    this.setDataNuovoConsolidamento(null);
View Full Code Here

TOP

Related Classes of it.pdor.webapp.common.ListaRighe

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.