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

it.cnr.contab.prevent00.consultazioni.action.ConsPdgPianoRipartoAction 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 18, 2005
 *
 * To change the template for this generated file go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
package it.cnr.contab.prevent00.consultazioni.action;

import it.cnr.contab.pdg00.consultazioni.bp.*;
import it.cnr.contab.pdg00.consultazioni.bulk.*;
import it.cnr.contab.prevent00.consultazioni.bp.ConsPdgPianoRipartoBP;
import it.cnr.contab.prevent00.consultazioni.bulk.V_cons_pdg_modulo_classBulk;
import it.cnr.contab.prevent00.consultazioni.bulk.V_cons_pdg_piano_ripartoBulk;
import it.cnr.contab.utenze00.bp.CNRUserContext;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.action.Forward;
import it.cnr.jada.persistency.sql.CompoundFindClause;
import it.cnr.jada.persistency.sql.SQLBuilder;
import it.cnr.jada.util.action.ConsultazioniAction;
import it.cnr.jada.util.action.ConsultazioniBP;

/**
 * @author rpagano
 *
 * To change the template for this generated type comment go to
 * Window>Preferences>Java>Code Generation>Code and Comments
 */
public class ConsPdgPianoRipartoAction extends ConsultazioniAction {
	public Forward doConsultaDettagliModuloClass(ActionContext context) {
		try {
			fillModel(context);
			ConsPdgPianoRipartoBP bp = (ConsPdgPianoRipartoBP)context.getBusinessProcess();

			V_cons_pdg_piano_ripartoBulk cla = (V_cons_pdg_piano_ripartoBulk)bp.getModel();

			if (cla==null) {
				bp.setMessage("Nessun dettaglio selezionato");
				return context.findDefaultForward();
			}
					
			CompoundFindClause clause = new CompoundFindClause();
			clause.addClause("AND","esercizio",SQLBuilder.EQUALS,cla.getEsercizio());
			clause.addClause("AND","id_classificazione",SQLBuilder.EQUALS,cla.getId_classificazione());
			clause.addClause("AND","cd_centro_responsabilita",SQLBuilder.EQUALS,cla.getCd_centro_responsabilita());

			ConsultazioniBP ricercaLiberaBP = (ConsultazioniBP)context.createBusinessProcess("ConsPdgModuloClassBP");
			
			ricercaLiberaBP.addToBaseclause(clause);
			ricercaLiberaBP.openIterator(context);
			ricercaLiberaBP.setSearchResultColumnSet("nuovo_pdgp");
			context.addHookForward("close",this,"doDefault");
			return context.addBusinessProcess(ricercaLiberaBP);
		}catch(Throwable ex){
			return handleException(context, ex);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy