it.cnr.contab.varstanz00.action.CRUDVar_stanz_resRigaAction 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 Feb 21, 2006
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package it.cnr.contab.varstanz00.action;
import it.cnr.contab.config00.latt.bulk.WorkpackageBulk;
import it.cnr.contab.config00.pdcfin.bulk.Elemento_voceBulk;
import it.cnr.contab.config00.pdcfin.bulk.Voce_fBulk;
import it.cnr.contab.util.Utility;
import it.cnr.contab.varstanz00.bp.CRUDVar_stanz_resRigaBP;
import it.cnr.contab.varstanz00.bulk.Var_stanz_res_rigaBulk;
import it.cnr.jada.util.action.CRUDAction;
/**
* @author mspasiano
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class CRUDVar_stanz_resRigaAction extends CRUDAction {
private static final long serialVersionUID = 1L;
public it.cnr.jada.action.Forward doBlankSearchLinea_di_attivita(it.cnr.jada.action.ActionContext context, Var_stanz_res_rigaBulk var_stanz_res_riga) {
try {
fillModel(context);
CRUDVar_stanz_resRigaBP bp = (CRUDVar_stanz_resRigaBP)getBusinessProcess(context);
var_stanz_res_riga.setLinea_di_attivita(new WorkpackageBulk());
if (!bp.isVariazioneApprovata()){
var_stanz_res_riga.setElemento_voce(null);
}
if (bp.getParametriCnr()==null || !bp.getParametriCnr().getFl_nuovo_pdg())
var_stanz_res_riga.setVoce_f(new Voce_fBulk());
else {
var_stanz_res_riga.setVoce_f(null);
var_stanz_res_riga.setCd_voce(null);
}
var_stanz_res_riga.setDisponibilita_stanz_res(Utility.ZERO);
var_stanz_res_riga.setProgetto(null);
return context.findDefaultForward();
}catch(Throwable ex){
return handleException(context, ex);
}
}
public it.cnr.jada.action.Forward doBlankSearchElemento_voce(it.cnr.jada.action.ActionContext context, Var_stanz_res_rigaBulk var_stanz_res_riga) {
try {
fillModel(context);
var_stanz_res_riga.setElemento_voce(new Elemento_voceBulk());
CRUDVar_stanz_resRigaBP bp = (CRUDVar_stanz_resRigaBP)getBusinessProcess(context);
if (bp.getParametriCnr()==null || !bp.getParametriCnr().getFl_nuovo_pdg())
var_stanz_res_riga.setVoce_f(new Voce_fBulk());
else {
var_stanz_res_riga.setVoce_f(null);
var_stanz_res_riga.setCd_voce(null);
}
var_stanz_res_riga.setDisponibilita_stanz_res(Utility.ZERO);
return context.findDefaultForward();
}catch(Throwable ex){
return handleException(context, ex);
}
}
public it.cnr.jada.action.Forward doBringBackSearchLinea_di_attivita(it.cnr.jada.action.ActionContext context, Var_stanz_res_rigaBulk var_stanz_res_riga, WorkpackageBulk linea_di_attivita) {
try {
fillModel(context);
CRUDVar_stanz_resRigaBP bp = (CRUDVar_stanz_resRigaBP)getBusinessProcess(context);
var_stanz_res_riga.setLinea_di_attivita(linea_di_attivita);
bp.valorizzaVoceLunga(context,var_stanz_res_riga);
bp.valorizzaDisponibilita_stanz_res(context,var_stanz_res_riga);
bp.valorizzaProgettoLineaAttivita(context,var_stanz_res_riga);
return context.findDefaultForward();
}catch(Throwable ex){
return handleException(context, ex);
}
}
public it.cnr.jada.action.Forward doBringBackSearchElemento_voce(it.cnr.jada.action.ActionContext context, Var_stanz_res_rigaBulk var_stanz_res_riga, Elemento_voceBulk elemento_voce) {
try {
fillModel(context);
CRUDVar_stanz_resRigaBP bp = (CRUDVar_stanz_resRigaBP)getBusinessProcess(context);
var_stanz_res_riga.setElemento_voce(elemento_voce);
bp.valorizzaVoceLunga(context,var_stanz_res_riga);
bp.valorizzaDisponibilita_stanz_res(context,var_stanz_res_riga);
return context.findDefaultForward();
}catch(Throwable ex){
return handleException(context, ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy