wilian 2016-08-10 02:55:00 +00:00
parent ded79ee3f4
commit 84f6f27a46
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class RelatorioVendaPacoteVoucher extends Relatorio {
.append("JOIN USUARIO U ON U.USUARIO_ID = VP.USUARIO_ID ") .append("JOIN USUARIO U ON U.USUARIO_ID = VP.USUARIO_ID ")
.append("WHERE VP.VENDAPACOTE_ID = :vendapacoteId ") .append("WHERE VP.VENDAPACOTE_ID = :vendapacoteId ")
.append("AND VP.MOTIVOCANCELVENDAPACOTE_ID IS NULL "); .append("AND VP.MOTIVOCANCELVENDAPACOTE_ID IS NULL ");
log.info(sQuery); log.debug(sQuery);
stmt = new NamedParameterStatement(conexao, sQuery.toString()); stmt = new NamedParameterStatement(conexao, sQuery.toString());
stmt.setLong("vendapacoteId", vendapacoteId); stmt.setLong("vendapacoteId", vendapacoteId);
rset = stmt.executeQuery(); rset = stmt.executeQuery();