fixes bug#AL-1070

dev:wallace
qua:juliane

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@113159 d1611594-4594-4d17-8e1d-87c2c4800839
master
gleimar 2022-07-05 00:12:02 +00:00
parent c80ff9e802
commit 5aee809cd2
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public class GerarMapeamentoImpressora {
String serie = info[1]; String serie = info[1];
String mapeamento = String.format("%03d", Integer.parseInt(info[2])); String mapeamento = String.format("%03d", Integer.parseInt(info[2]));
// aSystem.out.println("update FISCAL_IMPRESSORA set NUMEROIDENTIFICACAO = '" + mapeamento + "' where NUMSERIE20 = '" + serie + "';"); // System.out.println("update FISCAL_IMPRESSORA set NUMEROIDENTIFICACAO = '" + mapeamento + "' where NUMSERIE20 = '" + serie + "';");
System.out.println("update FISCAL_IMPRESSORA set NUMEROIDENTIFICACAO = '" + mapeamento + "', ESTADOLOCAL_ID = (select ESTADO_ID from ESTADO where CVEESTADO like '" + estado + "') where NUMSERIE20 = '" + serie + "';"); System.out.println("update FISCAL_IMPRESSORA set NUMEROIDENTIFICACAO = '" + mapeamento + "', ESTADOLOCAL_ID = (select ESTADO_ID from ESTADO where CVEESTADO like '" + estado + "') where NUMSERIE20 = '" + serie + "';");
// System.out.println("insert into tmp_map values ('" + estado + "','" + serie + "','" + mapeamento + "');"); // System.out.println("insert into tmp_map values ('" + estado + "','" + serie + "','" + mapeamento + "');");
} }