Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0033226
TypeCategorySeverityReproducibilityDate SubmittedLast Update
backport[Openbravo ERP] A. Platformmajoralways2016-06-11 21:362016-06-20 13:06
ReporterguillermogilView Statuspublic 
Assigned Tocaristu 
PriorityimmediateResolutionfixedFixed in Version3.0PR16Q1.4
StatusclosedFix in branchFixed in SCM revisionfe177b6118d7
ProjectionnoneETAnoneTarget Version3.0PR16Q1.4
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Review Assigned Toalostale
Web browser
ModulesCore
Regression levelProduction - QA Approved
Regression date2015-10-27
Regression introduced in release3.0PR16Q1
Regression introduced by commithttps://code.openbravo.com/erp/devel/pi/rev/cbf2d65774b8afda5265c76b78642271a0a7246a [^]
Triggers an Emergency PackNo
Summary

0033226: ConcatPDFReport has a null pointer exception if is used without reportConfiguration parameter

DescriptionConcatPDFReport has a null pointer exception if is used without reportConfiguration parameter
Method concatPDFReport(List<JasperPrint> jasperPrintList, boolean createBookmarks,
      OutputStream outputStream)
is creating a null pointer exception
Steps To ReproduceCreate a call on concatPDFReport(List<JasperPrint> jasperPrintList, boolean createBookmarks,
      OutputStream outputStream)
Without any SimplePdfExporterConfiguration
Proposed SolutionOn ReportingUtils.java:
   public static void concatPDFReport(List<JasperPrint> jasperPrintList, boolean createBookmarks,
      OutputStream outputStream, SimplePdfExporterConfiguration reportConfiguration)
      throws JRException {

    JRPdfExporter exporter = new JRPdfExporter();
    SimpleOutputStreamExporterOutput exporterOutput = new SimpleOutputStreamExporterOutput(
        outputStream);
    SimplePdfExporterConfiguration configuration = reportConfiguration != null ? reportConfiguration
        : new SimplePdfExporterConfiguration();

    reportConfiguration.setCreatingBatchModeBookmarks(createBookmarks);
    exporter.setConfiguration(configuration);
    exporter.setExporterInput(SimpleExporterInput.getInstance(jasperPrintList));
    exporter.setExporterOutput(exporterOutput);

    exporter.exportReport();
  }

Line:
    reportConfiguration.setCreatingBatchModeBookmarks(createBookmarks);
Should be:
    configuration.setCreatingBatchModeBookmarks(createBookmarks);
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]
blocks defect 0033222 closedcaristu ConcatPDFReport has a null pointer exception if is used without reportConfiguration parameter 

-  Notes
(0087192)
hgbot (developer)
2016-06-13 11:00

Repository: erp/backports/3.0PR16Q1.4
Changeset: fe177b6118d7d599ab1fbc21fc7750f8f4dddead
Author: Carlos Aristu <carlos.aristu <at> openbravo.com>
Date: Mon Jun 13 10:59:22 2016 +0200
URL: http://code.openbravo.com/erp/backports/3.0PR16Q1.4/rev/fe177b6118d7d599ab1fbc21fc7750f8f4dddead [^]

fixes issue 33226: ConcatPDFReport can throw a null pointer exception
Use the correct variable name (configuration instead of reportConfiguration) when using the setCreatingBatchModeBookmarks method

---
M modules/org.openbravo.client.application/src/org/openbravo/client/application/report/ReportingUtils.java
---
(0087668)
alostale (manager)
2016-06-20 13:06

code reviewed + tested

- Issue History
Date Modified Username Field Change
2016-06-13 09:49 alostale Type defect => backport
2016-06-13 09:49 alostale Target Version => 3.0PR16Q1.4
2016-06-13 11:00 hgbot Checkin
2016-06-13 11:00 hgbot Note Added: 0087192
2016-06-13 11:00 hgbot Status scheduled => resolved
2016-06-13 11:00 hgbot Resolution open => fixed
2016-06-13 11:00 hgbot Fixed in SCM revision => http://code.openbravo.com/erp/backports/3.0PR16Q1.4/rev/fe177b6118d7d599ab1fbc21fc7750f8f4dddead [^]
2016-06-13 11:21 caristu Review Assigned To => alostale
2016-06-20 13:06 alostale Note Added: 0087668
2016-06-20 13:06 alostale Status resolved => closed
2016-06-20 13:06 alostale Fixed in Version => 3.0PR16Q1.4


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker