diff --git a/tests/com/rjconsultores/tests/GerarMapeamentoImpressora.java b/tests/com/rjconsultores/tests/GerarMapeamentoImpressora.java index 155b2d2f2..9361d97e3 100644 --- a/tests/com/rjconsultores/tests/GerarMapeamentoImpressora.java +++ b/tests/com/rjconsultores/tests/GerarMapeamentoImpressora.java @@ -25,7 +25,8 @@ public class GerarMapeamentoImpressora { String serie = info[1]; String mapeamento = info[2]; - System.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("insert into tmp_map values ('" + estado + "','" + serie + "','" + mapeamento + "');"); }