gleimar 2015-05-04 19:17:45 +00:00
parent 2fdade0446
commit 4d38afbaac
1 changed files with 3 additions and 2 deletions

View File

@ -69,13 +69,14 @@ public class ImportarPlanilhaController extends MyGenericForwardComposer {
public void onClick$btnWs(Event ev) throws InterruptedException { public void onClick$btnWs(Event ev) throws InterruptedException {
List<PuntoVenta> listpv = puntoVentaService.obtenerTodos(); List<PuntoVenta> listpv = puntoVentaService.obtenerTodos();
log.info("qtd age:"+listpv.size()); int qtdAge = listpv.size();
log.info("qtd age:"+qtdAge);
int i = 1; int i = 1;
int qtdOk= 1; int qtdOk= 1;
for (PuntoVenta pv : listpv) { for (PuntoVenta pv : listpv) {
log.info("pos:"+i++); log.info("pos:("+qtdAge+") "+i++);
log.info(pv.getPuntoventaId() + " - " + pv.getNumPuntoVenta()); log.info(pv.getPuntoventaId() + " - " + pv.getNumPuntoVenta());
try { try {