All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.contab.prevent01.bp.StampaPdgpBilancioBP Maven / Gradle / Ivy

/*
 * Copyright (C) 2019  Consiglio Nazionale delle Ricerche
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Affero General Public License as
 *     published by the Free Software Foundation, either version 3 of the
 *     License, or (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU Affero General Public License for more details.
 *
 *     You should have received a copy of the GNU Affero General Public License
 *     along with this program.  If not, see .
 */

package it.cnr.contab.prevent01.bp;

import java.util.Enumeration;
import java.util.Optional;

import it.cnr.contab.config00.pdcfin.cla.bulk.Parametri_livelliBulk;
import it.cnr.contab.prevent01.bulk.Stampa_pdgp_bilancioBulk;
import it.cnr.contab.prevent01.ejb.PdgAggregatoModuloComponentSession;
import it.cnr.contab.reports.bp.ParametricPrintBP;
import it.cnr.contab.utenze00.bp.CNRUserContext;
import it.cnr.contab.util.Utility;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.bulk.OggettoBulk;
import it.cnr.jada.comp.ComponentException;


public class StampaPdgpBilancioBP extends ParametricPrintBP {

	/**
	 * 
	 */
	private static final long serialVersionUID = -3023075061400467210L;

	/**
	 * StampaRendicontoFinanziarioBP constructor comment.
	 */
	public StampaPdgpBilancioBP() {
		super();
	}
	/**
	 * StampaRendicontoFinanziarioBP constructor comment.
	 * @param function java.lang.String
	 */
	public StampaPdgpBilancioBP(String function) {
		super(function);
	}
	
	@Override
	public OggettoBulk initializeBulkForPrint(ActionContext context, OggettoBulk bulk) throws BusinessProcessException {
		try {
			OggettoBulk oggettoBulk = super.initializeBulkForPrint(context, bulk);
			if (oggettoBulk instanceof Stampa_pdgp_bilancioBulk) {
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setEsercizio(CNRUserContext.getEsercizio(context.getUserContext()));
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setTi_stampa(Stampa_pdgp_bilancioBulk.TIPO_DECISIONALE);				
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setTi_aggregazione(Stampa_pdgp_bilancioBulk.TIPO_FINANZIARIO);
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setTi_origine(Stampa_pdgp_bilancioBulk.TIPO_PROVVISORIO);				
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setTi_gestione(Stampa_pdgp_bilancioBulk.TIPO_GESTIONE_ENTRATA);
				((Stampa_pdgp_bilancioBulk) oggettoBulk).setTi_parte(Stampa_pdgp_bilancioBulk.TIPO_PARTE_ENTRAMBE);
				
				loadModelBulkOptions(context, (Stampa_pdgp_bilancioBulk) oggettoBulk);
			}
			return oggettoBulk;
		}catch(Throwable e) {
			throw new BusinessProcessException(e);
		}
	}
	
	public void loadModelBulkOptions(ActionContext context) throws BusinessProcessException {
		try {
			OggettoBulk oggettoBulk = this.getModel();
			if (oggettoBulk instanceof Stampa_pdgp_bilancioBulk)
				loadModelBulkOptions(context, (Stampa_pdgp_bilancioBulk) oggettoBulk);
		}catch(Throwable e) {
			throw new BusinessProcessException(e);
		}
	}

	private Stampa_pdgp_bilancioBulk loadModelBulkOptions(ActionContext context, Stampa_pdgp_bilancioBulk stampa) throws BusinessProcessException {
		try {
			Parametri_livelliBulk parliv = Utility.createClassificazioneVociComponentSession().findParametriLivelli(context.getUserContext(), stampa.getEsercizio());
	
			it.cnr.jada.util.OrderedHashtable livelliOptions = new it.cnr.jada.util.OrderedHashtable();
	
			int index = 1;
				
			if (Optional.ofNullable(stampa)
					.filter(Stampa_pdgp_bilancioBulk::isTipoGestioneSpesa)
					.filter(Stampa_pdgp_bilancioBulk::isTipoAggregazioneScientifica)
					.isPresent()) {
				livelliOptions.put(index++, "Programma");
				livelliOptions.put(index++, "Missione");
			}
				
			if (Optional.ofNullable(stampa)
					.filter(Stampa_pdgp_bilancioBulk::isTipoGestioneEntrata)
					.isPresent()) {

				stampa.setTi_aggregazione(Stampa_pdgp_bilancioBulk.TIPO_FINANZIARIO);

				if (parliv.getDs_livello1e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello1e());
				if (parliv.getDs_livello2e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello2e());
				if (parliv.getDs_livello3e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello3e());
				if (parliv.getDs_livello4e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello4e());
				if (parliv.getDs_livello5e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello5e());
				if (parliv.getDs_livello6e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello6e());
				if (parliv.getDs_livello7e()!=null)
					livelliOptions.put(index++, parliv.getDs_livello7e());
			} else {
				if (parliv.getDs_livello1s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello1s());
				if (parliv.getDs_livello2s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello2s());
				if (parliv.getDs_livello3s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello3s());
				if (parliv.getDs_livello4s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello4s());
				if (parliv.getDs_livello5s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello5s());
				if (parliv.getDs_livello6s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello6s());
				if (parliv.getDs_livello7s()!=null)
					livelliOptions.put(index++, parliv.getDs_livello7s());
			}

			stampa.setLivelliOptions(livelliOptions);
			if (stampa.getTi_livello()!=null) {
				Enumeration a = livelliOptions.keys();
				while (a.hasMoreElements()) {
					Integer key = (Integer) a.nextElement();
					if (livelliOptions.get(key).equals(stampa.getTi_livello()))
						return stampa;
				}
			}
			stampa.setTi_livello(livelliOptions.get(0).toString());
		}catch(Throwable e) {
			throw new BusinessProcessException(e);
		}
		return stampa;
	}
	
	public void stampaBilancioCallAggiornaDati(ActionContext context, boolean aggPrevAC, boolean aggResiduiAC, boolean aggPrevAP, boolean aggResiduiAP, boolean aggCassaAC) throws BusinessProcessException, ComponentException {
		((PdgAggregatoModuloComponentSession)createComponentSession()).stampaBilancioCallAggiornaDati(context.getUserContext(), (Stampa_pdgp_bilancioBulk)this.getModel(), aggPrevAC, aggResiduiAC, aggPrevAP, aggResiduiAP, aggCassaAC);
	}
	
	public void stampaRendicontoCallAggiornaDati(ActionContext context, boolean aggCompAC, boolean aggResiduiAC, boolean aggCassaAC, boolean aggCompAP, boolean aggResiduiAP, boolean aggCassaAP) throws BusinessProcessException, ComponentException {
		((PdgAggregatoModuloComponentSession)createComponentSession()).stampaRendicontoCallAggiornaDati(context.getUserContext(), (Stampa_pdgp_bilancioBulk)this.getModel(), aggCompAC, aggResiduiAC, aggCassaAC, aggCompAP, aggResiduiAP, aggCassaAP);
	}

	public boolean isStampaRendiconto() {
		return "StampaPdgRendicontoBP".equals(this.getName());
	}
	
	public boolean isStampaRendicontoGestionale() {
		return isStampaRendiconto() &&
				Optional.ofNullable(this.getModel()).filter(Stampa_pdgp_bilancioBulk.class::isInstance).map(Stampa_pdgp_bilancioBulk.class::cast)
					.map(Stampa_pdgp_bilancioBulk::isTipoGestionale).orElse(Boolean.FALSE);
	}

	@Override
	public String getFormTitle() {
		if (this.isStampaRendiconto())
			return "Stampa Rendiconto Finanziario";
		else 
			return "Stampa Bilancio Previsione";
	}
	
	@Override
	public String getReportName() {
		Optional optOggettoBulk = Optional.ofNullable(this.getModel()).filter(Stampa_pdgp_bilancioBulk.class::isInstance).map(Stampa_pdgp_bilancioBulk.class::cast);
		if (this.isStampaRendiconto()) {
			if (optOggettoBulk.map(Stampa_pdgp_bilancioBulk::isTipoDecisionale).orElse(Boolean.FALSE))
				return "/preventivo/preventivo/stampa_pdg_renddec.jasper";
			else if (optOggettoBulk.map(Stampa_pdgp_bilancioBulk::isPartePrima).orElse(Boolean.FALSE))
				return "/preventivo/preventivo/stampa_pdg_rendges_competenza.jasper";
			else if (optOggettoBulk.map(Stampa_pdgp_bilancioBulk::isParteSeconda).orElse(Boolean.FALSE))
				return "/preventivo/preventivo/stampa_pdg_rendges_residui.jasper";
			else 
				return "/preventivo/preventivo/stampa_pdg_rendges_all.jasper";
		}
		else if (optOggettoBulk.map(Stampa_pdgp_bilancioBulk::isTipoPluriennale).orElse(Boolean.FALSE))
			return "/preventivo/preventivo/stampa_pdgp_bilancio_pluriennale.jasper";
		else
			return "/preventivo/preventivo/stampa_pdgp_bilancio.jasper";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy