fixes bug#AL-4146

master
Gleison da Cruz 2024-05-27 20:44:06 -03:00
parent 29c229c84f
commit bf6579aa44
1 changed files with 2 additions and 2 deletions

View File

@ -531,7 +531,7 @@ public class RelatorioTaxasLinhaController extends MyGenericForwardComposer {
List<RelatorioTaxasLinhaBean> lsDadosRelatorio = new ArrayList<RelatorioTaxasLinhaBean>();
String sql = getSql(puntosVentaIds, false);
String sql = getSql(puntosVentaIds);
NamedParameterStatement stmt = new NamedParameterStatement(conexao, sql);
@ -660,7 +660,7 @@ public class RelatorioTaxasLinhaController extends MyGenericForwardComposer {
return lsDadosRelatorio;
}
private String getSql(String puntosVentaIds, Boolean isDataEmissao) {
private String getSql(String puntosVentaIds) {
StringBuilder sql = new StringBuilder();
sql.append(" SELECT RT.PREFIXO, ");