eduardo.dicarde 2016-07-05 20:13:01 +00:00
parent 85f25e52c6
commit 1d6ca3388b
1 changed files with 4 additions and 1 deletions

View File

@ -666,6 +666,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
HSSFSheet sheet1 = null;
String ruta = "";
int contRow = 0;
int contPlan = 0;
for (int i = 0; i < lsRutaCombinacion.size(); i++) {
Object[] obj = (Object[]) lsRutaCombinacion.get(i);
@ -680,8 +681,10 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
sheetName = (obj[12].toString().concat("-").concat(obj[4].toString()));
}
sheetName = sheetName.replaceAll("/", "-");
sheetName += ++contPlan;
log.debug("Aba: " + sheetName);
sheet1 = wb.createSheet(sheetName);
contRow = 1;