fixes bug#7778
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Web/trunk/ventaboletos@58464 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
43a98cfbd5
commit
d82abcd79f
|
@ -689,6 +689,7 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
criarCabecalhoExcel(sheet1, estilo);
|
||||
}
|
||||
} catch(Exception exception){
|
||||
log.error("",exception);
|
||||
System.err.println(sheetName);
|
||||
continue;
|
||||
}
|
||||
|
@ -879,8 +880,8 @@ public class ModificacionMasivaTarifasController extends MyGenericForwardCompose
|
|||
|
||||
row.createCell(IDX_CELL_ORGAOCONCEDENTE).setCellValue(obj[17].toString());
|
||||
|
||||
row.createCell(IDX_CELL_NUMLINHA).setCellValue(obj[20].toString());
|
||||
row.createCell(IDX_CELL_PREFIXO).setCellValue(obj[21].toString());
|
||||
row.createCell(IDX_CELL_NUMLINHA).setCellValue(obj[20] == null?"":obj[20].toString());
|
||||
row.createCell(IDX_CELL_PREFIXO).setCellValue(obj[21] == null?"":obj[21].toString());
|
||||
|
||||
String sentido = obj[22].toString();
|
||||
row.createCell(IDX_CELL_SENTIDO).setCellValue(sentido.equals("1") ? "IDA" : "VOLTA");
|
||||
|
|
Loading…
Reference in New Issue