fixes bug#AL-3969

master
wallace.henrique 2024-03-11 19:50:30 -03:00
parent 5e43745916
commit e180a7a0e4
3 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd "> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>

View File

@ -344,7 +344,6 @@ public class RelatorioEstoque extends Relatorio {
sb.append(" TB.serie, "); sb.append(" TB.serie, ");
sb.append(" TB.folioCaja "); sb.append(" TB.folioCaja ");
System.out.println(sb.toString());
return sb.toString(); return sb.toString();
} }

View File

@ -218,7 +218,5 @@ public class ItemReporteControleEstoqueBoletos {
public String toString() { public String toString() {
return "ItemReporteControleEstoqueBoletos [folioInicial=" + folioInicial + ", folioFinal=" + folioFinal return "ItemReporteControleEstoqueBoletos [folioInicial=" + folioInicial + ", folioFinal=" + folioFinal
+ ", descPuntoVenta=" + descPuntoVenta + ", folioAtual=" + folioAtual + ", aidfId=" + aidfId + "]"; + ", descPuntoVenta=" + descPuntoVenta + ", folioAtual=" + folioAtual + ", aidfId=" + aidfId + "]";
} }
} }