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

it.cnr.contab.pdg01.consultazioni.bp.ConsPdgpPdggEtrBP 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 .
 */

/*
 * Created on Nov 9, 2005
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package it.cnr.contab.pdg01.consultazioni.bp;

import java.rmi.RemoteException;

import it.cnr.contab.config00.bulk.Parametri_cnrBulk;
import it.cnr.contab.config00.pdcfin.bulk.Elemento_voceHome;
import it.cnr.contab.progettiric00.core.bulk.ProgettoBulk;
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.comp.ComponentException;
import it.cnr.jada.util.Config;
import it.cnr.jada.util.action.ConsultazioniBP;
import it.cnr.jada.util.jsp.Button;

/**
 * @author rpagano
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ConsPdgpPdggEtrBP extends ConsultazioniBP {
	private static final long serialVersionUID = 1L;

	private String labelCd_classificazione;
	private boolean flNuovoPdg = false;

	public ConsPdgpPdggEtrBP(String s) {
		super(s);
	}

	public ConsPdgpPdggEtrBP() {
		super();
	}

	protected void init(it.cnr.jada.action.Config config, ActionContext context) throws BusinessProcessException {
		try{
			super.init(config, context);
			
 		    Integer esercizio = it.cnr.contab.utenze00.bp.CNRUserContext.getEsercizio(context.getUserContext());
		    Parametri_cnrBulk parCnr = Utility.createParametriCnrComponentSession().getParametriCnr(context.getUserContext(), esercizio); 

			setLabelCd_classificazione(Utility.createClassificazioneVociComponentSession(). 
									   getDsLivelloClassificazione(context.getUserContext(),
																   CNRUserContext.getEsercizio(context.getUserContext()),
																   Elemento_voceHome.GESTIONE_ENTRATE,
																   parCnr.getLivello_pdg_decis_etr()));
 		    setFlNuovoPdg(parCnr.getFl_nuovo_pdg().booleanValue());
		} catch (ComponentException e) {
			throw new BusinessProcessException(e);
		} catch (RemoteException e) {
			throw new BusinessProcessException(e);
		} 
	}

	public java.util.Vector addButtonsToToolbar(java.util.Vector listButton){
		Button button = new Button(Config.getHandler().getProperties(getClass()), "Toolbar.dettagli");
		button.setSeparator(true);

		listButton.addElement(button);

		return listButton;
	}

	public void setFlNuovoPdg(boolean flNuovoPdg) {
		this.flNuovoPdg = flNuovoPdg;
	}
	
	public boolean isFlNuovoPdg() {
		return flNuovoPdg;
	}
	
	public String getLabelCd_classificazione() {
		return labelCd_classificazione;
	}
	
	public void setLabelCd_classificazione(String string) {
		labelCd_classificazione = string;
	}
	
	public String getLabelCd_progetto(){
		if (this.isFlNuovoPdg())
			return ProgettoBulk.LABEL_PROGETTO;
		else
			return "Modulo di Attività";
	}	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy