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

it.cnr.contab.bollo00.action.AttoBolloAction 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.bollo00.action;

import java.util.Optional;

import it.cnr.contab.bollo00.bp.CRUDAttoBolloBP;
import it.cnr.contab.bollo00.bulk.Atto_bolloBulk;
import it.cnr.contab.bollo00.tabrif.bulk.Tipo_atto_bolloBulk;
import it.cnr.jada.DetailedRuntimeException;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.Forward;

public class AttoBolloAction extends it.cnr.jada.util.action.CRUDAction{
	private static final long serialVersionUID = 1L;

	public AttoBolloAction() {
		super();
	}

	public Forward doOnNumFogliChange(ActionContext context) {
		try{
			fillModel(context);
			Atto_bolloBulk model = (Atto_bolloBulk)getBusinessProcess(context).getModel();
			if (!Optional.ofNullable(model.getNumDettagli()).filter(el->el>0).isPresent()) {
				model.setNumRighe(0);
				model.setNumDettagli(0);
			}
			((CRUDAttoBolloBP)getBusinessProcess(context)).validateFogliRighe(context);
		} catch (it.cnr.jada.bulk.FillException e){
			return handleException(context,e);
		}
		return context.findDefaultForward();
	}

	public Forward doOnNumRigheChange(ActionContext context) {
		try{
			fillModel(context);
			Atto_bolloBulk model = (Atto_bolloBulk)getBusinessProcess(context).getModel();
			if (!Optional.ofNullable(model.getNumRighe()).filter(el->el>0).isPresent()) {
				model.setNumRighe(0);
				model.setNumDettagli(0);
			}
			((CRUDAttoBolloBP)getBusinessProcess(context)).validateFogliRighe(context);
		} catch (it.cnr.jada.bulk.FillException e){
			return handleException(context,e);
		}
		return context.findDefaultForward();
	}

	public Forward doOnFlContrattoRegistratoChange(ActionContext context) {
		try{
			fillModel(context);
			Atto_bolloBulk model = (Atto_bolloBulk)getBusinessProcess(context).getModel();
			if (!model.isFlContrattoRegistrato())
				model.setContratto(null);
		} catch (it.cnr.jada.bulk.FillException e){
			return handleException(context,e);
		}
		return context.findDefaultForward();
	}

	public Forward doToggleAllegati(ActionContext context) {
    	CRUDAttoBolloBP bp = Optional.ofNullable(getBusinessProcess(context))
                .filter(CRUDAttoBolloBP.class::isInstance)
                .map(CRUDAttoBolloBP.class::cast)
                .orElseThrow(() -> new DetailedRuntimeException("Business Process non valido"));
        bp.setAllegatiCollapse(!bp.isAllegatiCollapse());
        return context.findDefaultForward();
    }

	public Forward doBringBackSearchFindTipoAttoBollo(ActionContext context, Atto_bolloBulk atto, Tipo_atto_bolloBulk tipoAtto) 
	{
		atto.setTipoAttoBollo(tipoAtto);
		atto.setNumDettagli(Optional.ofNullable(tipoAtto)
									.filter(Tipo_atto_bolloBulk::isCalcoloPerEsemplare)
									.map(el->Integer.valueOf(1))
									.orElse(null));
		return context.findDefaultForward();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy