it.cnr.contab.missioni00.bp.CRUDMissioneAbbattimentiBP 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.missioni00.bp;
import it.cnr.contab.missioni00.tabrif.bulk.*;
import it.cnr.contab.docamm00.tabrif.bulk.*;
import it.cnr.contab.anagraf00.tabter.bulk.*;
import it.cnr.contab.missioni00.ejb.*;
import it.cnr.contab.compensi00.docs.bulk.CompensoBulk;
import it.cnr.jada.action.*;
import it.cnr.jada.bulk.*;
/**
* CRUD per la tabella Abbattimenti
* Creation date: (26/11/2001 15.55.08)
* @author: Vincenzo Bisquadro
*/
public class CRUDMissioneAbbattimentiBP extends it.cnr.jada.util.action.SimpleCRUDBP {
/**
* Costruttore standard di CRUDMissioneAbbattimentiBP
*/
public CRUDMissioneAbbattimentiBP() {
super();
}
/**
* Costruttore di CRUDMissioneAbbattimentiBP cui viene passato in ingresso:
* function
*
* Creation date: (26/11/2001 16.04.41)
*
* @param function java.lang.String
*/
public CRUDMissioneAbbattimentiBP(String function) {
super(function);
}
/**
* Non devo poter modificare un record che abbia data fine validita
* inferiore alla data odierna oppure un record con data cancellazione valorizzata
*
* Posso modificare tutti i record che hanno data fine validita
* maggiore o uguale della data odierna e data cancellazione nulla
*
*/
public void basicEdit(ActionContext context, OggettoBulk bulk, boolean doInitializeForEdit) throws it.cnr.jada.action.BusinessProcessException {
super.basicEdit(context, bulk, doInitializeForEdit);
if (!isViewing()){
Missione_abbattimentiBulk abbatt = (Missione_abbattimentiBulk) getModel();
if(abbatt.getDt_cancellazione() != null){
setStatus(VIEW);
setMessage("Abbattimento cancellato!");
}else if(abbatt.getDataFineValidita()!=null && abbatt.getDataFineValidita().compareTo(CompensoBulk.getDataOdierna())<=0){
setStatus(VIEW);
}
}
}
/**
* Insert the method's description here.
* Creation date: (12/02/2002 17.00.40)
* @param context it.cnr.jada.action.ActionContext
*/
public void gestioneNazione(ActionContext context) throws BusinessProcessException{
try{
Missione_abbattimentiBulk obj = (Missione_abbattimentiBulk)getModel();
MissioneAbbattimentiComponentSession session = (MissioneAbbattimentiComponentSession)createComponentSession();
obj = session.gestioneNazione(context.getUserContext(), obj);
if (obj.getNazione()==null){
obj.setTi_area_geografica(null);
setMessage("Non esiste la nazione associata all'area geografica selezionata");
}
setModel(context, obj);
}catch(it.cnr.jada.comp.ComponentException ex){
throw handleException(ex);
}catch(java.rmi.RemoteException ex){
throw handleException(ex);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy