it.cnr.contab.config00.bp.CRUDLimiteSpesaBP 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 03/01/2011
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package it.cnr.contab.config00.bp;
import it.cnr.contab.config00.pdcfin.bulk.LimiteSpesaDetBulk;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.bulk.OggettoBulk;
import it.cnr.jada.bulk.ValidationException;
import it.cnr.jada.util.action.SimpleCRUDBP;
import it.cnr.jada.util.action.SimpleDetailCRUDController;
/**
* @author rpucciarelli
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class CRUDLimiteSpesaBP extends SimpleCRUDBP {
private SimpleDetailCRUDController dettagli = new SimpleDetailCRUDController( "Dettagli", LimiteSpesaDetBulk.class, "dettagli", this){
public void validate(ActionContext context,OggettoBulk model) throws ValidationException {
validate_Dettagli(context,model);
}
@Override
public void validateForDelete(ActionContext actioncontext,
OggettoBulk oggettobulk) throws ValidationException {
if (oggettobulk instanceof LimiteSpesaDetBulk)
if (((LimiteSpesaDetBulk)oggettobulk).isUtilizzato())
throw new ValidationException("I cds che hanno già assunto impegni non possono essere eliminati.");
((LimiteSpesaDetBulk)oggettobulk).getLimiteSpesa().setImporto_assegnato(
((LimiteSpesaDetBulk)oggettobulk).getLimiteSpesa().getImporto_assegnato().subtract(((LimiteSpesaDetBulk)oggettobulk).getImporto_limite()));
}
};
public CRUDLimiteSpesaBP()
{
super();
}
public CRUDLimiteSpesaBP(String s)
{
super(s);
}
public SimpleDetailCRUDController getDettagli() {
return dettagli;
}
private void validate_Dettagli(ActionContext context, OggettoBulk model)throws ValidationException
{
try {
LimiteSpesaDetBulk det=(LimiteSpesaDetBulk)model;
completeSearchTools(context, this);
if(det.getCd_cds()==null)
throw new ValidationException("Inserire un valore per il campo Cds.");
if(det.getImporto_limite()==null)
throw new ValidationException("Inserire un valore per il campo Importo limite.");
((it.cnr.contab.config00.ejb.LimiteSpesaComponentSession)createComponentSession()).validaCds(
context.getUserContext(),
det);
} catch(Throwable e) {
throw new ValidationException(e.getMessage());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy