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

it.cnr.contab.inventario00.actions.Stampa_registro_inventarioAction 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.inventario00.actions;

import it.cnr.contab.docamm00.tabrif.bulk.Categoria_gruppo_inventBulk;
import it.cnr.contab.inventario00.docs.bulk.Stampa_registro_inventarioVBulk;
import it.cnr.contab.inventario00.tabrif.bulk.Tipo_carico_scaricoBulk;
import it.cnr.contab.reports.bp.ParametricPrintBP;

/**
 * Insert the type's description here.
 * Creation date: (22/07/2004 12.21.54)
 * @author: Gennaro Borriello
 */
public class Stampa_registro_inventarioAction extends it.cnr.contab.reports.action.ParametricPrintAction {
/**
 * Stampa_registro_inventarioAction constructor comment.
 */
public Stampa_registro_inventarioAction() {
	super();
}
/**
 * Gestisce la ricerca di una Categoria
 */

public it.cnr.jada.action.Forward doBlankSearchFind_categoria(it.cnr.jada.action.ActionContext context, it.cnr.contab.inventario00.docs.bulk.Stampa_registro_inventarioVBulk stampa) {

    try {
        fillModel(context);
        it.cnr.jada.util.action.FormField field = getFormField(context, "main.find_categoria");        
		
        stampa.setGruppoForPrint(new it.cnr.contab.docamm00.tabrif.bulk.Categoria_gruppo_inventBulk());
        blankSearch(context, field, createEmptyModelForSearchTool(context, field));

        return context.findDefaultForward();
    } catch (Throwable t) {
        return handleException(context, t);
    }
}
public it.cnr.jada.action.Forward doClickFlagUfficiale(it.cnr.jada.action.ActionContext context) {

    try {
        fillModel(context);
        ParametricPrintBP bp = (ParametricPrintBP)context.getBusinessProcess();
    	Stampa_registro_inventarioVBulk stampa = (Stampa_registro_inventarioVBulk)bp.getModel();
    	if(stampa.getFl_ufficiale().booleanValue()){
    		stampa.setCategoriaForPrint(new Categoria_gruppo_inventBulk());
    		stampa.setGruppoForPrint(new Categoria_gruppo_inventBulk());
    		stampa.setTipoMovimento(new Tipo_carico_scaricoBulk());
    		stampa.setNrInventarioFrom(new Long(0));
    		stampa.setNrInventarioTo(new Long("9999999999"));
    		stampa.setFl_solo_totali(true);
    	}
        return context.findDefaultForward();
    } catch (Throwable t) {
        return handleException(context, t);
    }
}
public it.cnr.jada.action.Forward doPrint(it.cnr.jada.action.ActionContext context) {
	ParametricPrintBP bp = (ParametricPrintBP)context.getBusinessProcess();
	Stampa_registro_inventarioVBulk stampa = (Stampa_registro_inventarioVBulk)bp.getModel();
	if (!stampa.getFl_ufficiale())
		  bp.setReportName("/cnrdocamm/docamm/registro_inventario_princ.jasper");
		else 
		  bp.setReportName("/cnrdocamm/docamm/reg_inv_ce_sp.jasper");
	
	return super.doPrint(context);
}	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy