git-svn-id: https://svn.coded.pt/svn/SIPRP@678 bb69d46d-e84e-40c8-a05a-06db0d633741

0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z
Frederico Palma 18 years ago
parent 27880c86af
commit 92af78fe22

@ -191,6 +191,18 @@ public class ImpressaoFichasDataProvider extends MetaProvider
return pdf;
}
public byte[] getFO( Integer exameID )
throws Exception
{
Select select =
new Select( new String[]{ "exames" },
new String[]{ "fo" },
new Field( "id" ).isEqual( exameID ) );
Virtual2DArray array = executer.executeQuery( select );
byte fo[] = ( byte[] ) array.get( 0, 0 );
return fo;
}
public String getNomeTrabalhadorForExameID( Integer exameID )
throws Exception
{

Loading…
Cancel
Save