|
|
|
@ -2919,7 +2919,7 @@ public class AnalisesDataProvider extends GenericDataProvider
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public com.sun.rave.web.ui.model.Option[] getCausasAcidente( ) throws Exception
|
|
|
|
public com.sun.rave.web.ui.model.Option[] getCausasAcidente( boolean toStatistics ) throws Exception
|
|
|
|
{
|
|
|
|
{
|
|
|
|
com.sun.rave.web.ui.model.Option[] options = null;
|
|
|
|
com.sun.rave.web.ui.model.Option[] options = null;
|
|
|
|
|
|
|
|
|
|
|
|
@ -2936,7 +2936,7 @@ public class AnalisesDataProvider extends GenericDataProvider
|
|
|
|
if ( array != null )
|
|
|
|
if ( array != null )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
options = new com.sun.rave.web.ui.model.Option[ array.columnLength() + 1 ];
|
|
|
|
options = new com.sun.rave.web.ui.model.Option[ array.columnLength() + 1 ];
|
|
|
|
options[ 0 ] = new Option( new Integer( 0 ), "-Seleccionar" );
|
|
|
|
options[ 0 ] = toStatistics ? new Option( "", "" ) : new Option( new Integer( 0 ), "-Seleccionar" );
|
|
|
|
for ( int i = 0; i < array.columnLength(); i++ )
|
|
|
|
for ( int i = 0; i < array.columnLength(); i++ )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Integer causaID = array.get( i, 0 );
|
|
|
|
Integer causaID = array.get( i, 0 );
|
|
|
|
|