it.cnr.contab.ordmag.anag00.bp.CRUDNumerazioneMagBP 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.ordmag.anag00.bp;
import it.cnr.contab.ordmag.anag00.MagazzinoBulk;
import it.cnr.contab.ordmag.anag00.NumerazioneMagBulk;
import it.cnr.jada.action.ActionContext;
import it.cnr.jada.action.BusinessProcessException;
import it.cnr.jada.bulk.OggettoBulk;
import it.cnr.jada.util.action.SimpleCRUDBP;
import it.cnr.jada.util.action.SimpleDetailCRUDController;
public class CRUDNumerazioneMagBP extends SimpleCRUDBP{
private final SimpleDetailCRUDController numerazioneMagController = new SimpleDetailCRUDController("NumerazioneMagController",NumerazioneMagBulk.class,"numeratoreColl",this);
/**
* Primo costruttore della classe CRUDConfigParametriCnrBP.
*/
public CRUDNumerazioneMagBP() {
super();
}
/**
* Secondo costruttore della classe CRUDConfigParametriCnrBP.
* @param String function
*/
public CRUDNumerazioneMagBP(String function) {
super(function);
}
public SimpleDetailCRUDController getNumerazioneMagController() {
return numerazioneMagController;
}
public boolean isEditingAbilitazione()
{
NumerazioneMagBulk num = (NumerazioneMagBulk) getNumerazioneMagController().getModel();
if(num != null && num.isToBeCreated())
return true;
return false;
}
@Override
public OggettoBulk initializeModelForFreeSearch(ActionContext actioncontext, OggettoBulk oggettobulk)
throws BusinessProcessException {
MagazzinoBulk mag = (MagazzinoBulk)oggettobulk;
mag.setInQuery(true);
return super.initializeModelForFreeSearch(actioncontext, mag);
}
@Override
public OggettoBulk initializeModelForSearch(ActionContext actioncontext, OggettoBulk oggettobulk)
throws BusinessProcessException {
MagazzinoBulk mag = (MagazzinoBulk)oggettobulk;
mag.setInQuery(true);
return super.initializeModelForSearch(actioncontext, mag);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy