gleimar 2016-07-28 19:58:33 +00:00
parent 43a98cfbd5
commit d82abcd79f
1 changed files with 3 additions and 2 deletions

View File

@ -689,6 +689,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
criarCabecalhoExcel(sheet1, estilo); criarCabecalhoExcel(sheet1, estilo);
} }
} catch(Exception exception){ } catch(Exception exception){
log.error("",exception);
System.err.println(sheetName); System.err.println(sheetName);
continue; continue;
} }
@ -879,8 +880,8 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
row.createCell(IDX_CELL_ORGAOCONCEDENTE).setCellValue(obj[17].toString()); row.createCell(IDX_CELL_ORGAOCONCEDENTE).setCellValue(obj[17].toString());
row.createCell(IDX_CELL_NUMLINHA).setCellValue(obj[20].toString()); row.createCell(IDX_CELL_NUMLINHA).setCellValue(obj[20] == null?"":obj[20].toString());
row.createCell(IDX_CELL_PREFIXO).setCellValue(obj[21].toString()); row.createCell(IDX_CELL_PREFIXO).setCellValue(obj[21] == null?"":obj[21].toString());
String sentido = obj[22].toString(); String sentido = obj[22].toString();
row.createCell(IDX_CELL_SENTIDO).setCellValue(sentido.equals("1") ? "IDA" : "VOLTA"); row.createCell(IDX_CELL_SENTIDO).setCellValue(sentido.equals("1") ? "IDA" : "VOLTA");