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

it.cnr.contab.compensi00.actions.CRUDTrattamentoCORIAction 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.compensi00.actions;

import it.cnr.contab.compensi00.bp.*;
import it.cnr.contab.compensi00.tabrif.bulk.*;
import it.cnr.contab.compensi00.ejb.*;
import it.cnr.jada.action.*;


/**
 * Insert the type's description here.
 * Creation date: (14/03/2002 10.17.22)
 * @author: Roberto Fantino
 */
public class CRUDTrattamentoCORIAction extends it.cnr.jada.util.action.CRUDAction {
/**
 * TrattamentoCORIAction constructor comment.
 */
public CRUDTrattamentoCORIAction() {
	super();
}
public Forward doBlankSearchFind_trattamento(ActionContext context, Trattamento_coriBulk trattCORI) {

	trattCORI.setTipoTrattamento(new Tipo_trattamentoBulk());
	trattCORI.setRighe(new it.cnr.jada.bulk.BulkList());

	return context.findDefaultForward();
}
public Forward doBringBackSearchFind_trattamento(ActionContext context, Trattamento_coriBulk trattCORI, Tipo_trattamentoBulk tipoTrattamento) {

	try{
		if(tipoTrattamento != null) {
			trattCORI.setTipoTrattamento(tipoTrattamento);
			CRUDTrattamentoCORIBP bp = (CRUDTrattamentoCORIBP)getBusinessProcess(context);
			bp.setDirty(true);
			bp.fillAllRows(context, trattCORI);
		}

		return context.findDefaultForward();
	}catch(Throwable ex){
		return handleException(context, ex);
	}
}
public Forward doFreeSearchFind_contributo_ritenuta(ActionContext context) {

	try{

		Tipo_contributo_ritenutaBulk tipoCori = new Tipo_contributo_ritenutaBulk();
		TipoContributoRitenutaComponentSession sess = (TipoContributoRitenutaComponentSession)it.cnr.jada.util.ejb.EJBCommonServices.createEJB("CNRCOMPENSI00_EJB_TipoContributoRitenutaComponentSession", TipoContributoRitenutaComponentSession.class);
		tipoCori.setClassificazioneCoriColl(sess.loadClassificazioneCori(context.getUserContext()));
		tipoCori.setClassificazioneMontantiColl(sess.loadClassificazioneMontanti(context.getUserContext()));

		return freeSearch(context, getFormField(context, "main.find_contributo_ritenuta"), tipoCori);
		
	}catch(it.cnr.jada.comp.ComponentException ex){
		return handleException(context, ex);
	}catch(java.rmi.RemoteException ex){
		return handleException(context, ex);
	}catch(javax.ejb.EJBException ex){
		return handleException(context, ex);
	}
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy