Examples of agregarEstadoSiguiente()


Examples of unlp.edu.core.Sistema.agregarEstadoSiguiente()

   
    TipoItem tipoItem = sistema.getTipoItemID(Long.valueOf(idTipoItem));
    Estado savedEstadoInicial = sistema.getEstadoID(Long.valueOf(idEstadoInicial));
    Estado savedEstadoSiguiente = sistema.getEstadoTipoItem(tipoItem, estadoSiguienteDesc);
       
    sistema.agregarEstadoSiguiente(tipoItem, savedEstadoInicial, savedEstadoSiguiente);
   
      ActionRedirect redirect = new ActionRedirect(mapping.findForward("ok"));

      redirect.addParameter("idTI", idTipoItem);
      redirect.addParameter("idP", idProyecto);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.