Untitled
unknown
plain_text
2 years ago
776 B
5
Indexable
if (LecturaPdfService.TIPO_ACUSE.equals(tipoPdfCargado)
&& seccionLineaCapturaDto.getImporteTotalAPagar().getValor() != null) {
cadena.append(this.escritorBuilder.escribe(seccionLineaCapturaDto.getImporteTotalAPagar()))
.append(convierteAString(seccionLineaCapturaDto.getLineaDeCaptura()));
}
else if(LecturaPdfService.TIPO_ACUSE.equals(tipoPdfCargado)
&& seccionLineaCapturaDto.getImporteTotalAPagar().getValor() == null){
seccionLineaCapturaDto.getImporteTotalAPagar().setKey(29);
seccionLineaCapturaDto.getImporteTotalAPagar().setValor(BigDecimal.valueOf(0));
cadena.append(this.escritorBuilder.escribe(seccionLineaCapturaDto.getImporteTotalAPagar()))
.append(convierteAString(seccionLineaCapturaDto.getLineaDeCaptura()));
}Editor is loading...
Leave a Comment