[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2021-02-11 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17283282#comment-17283282
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Hi Michael,

Sorry, I don't think so

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2021-02-11 Thread Michael Brohl (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17283258#comment-17283258
 ] 

Michael Brohl commented on OFBIZ-6638:
--

Hi [~jleroux]  looks like this is a tough one. Any chance to bring this further 
in regard to the upcoming r18.12 release?

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-08-23 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17182716#comment-17182716
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Though it worked before, maybe it's a report issue as reported by 
[~lalit.dashora] at OFBIZ-8376

The most I could get is this error in RunAndRenderTask, line
 {{IReportExecutor executor = new ReportExecutor( executionContext );}}

Actually it's in getReport::getReport, line
 new ReportParser( ).parse( (ReportDesignHandle) runnable.getDesignHandle( ) );
 error: IndexOutOfBoundException

Here is the definition of ReportDesignHandle:

Open Declaration org.eclipse.birt.report.model.api.ReportDesignHandle

Represents the overall report design. The report design defines a set of 
properties that describe the design as a whole like author, base and comments 
etc.

Besides properties, it also contains a variety of elements that make up the 
report. These include:

Content Item Description

Code Modules Global scripts that apply to the report as a whole.
 Parameters A list of Parameter elements that describe the data that the user 
can enter when running the report.
 Data Sources The connections used by the report.
 Data Sets Data sets defined in the design.
 Color Palette A set of custom color names as part of the design.
 Styles User-defined styles used to format elements in the report. Each style 
must have a unique name within the set of styles for this report.
 Page Setup The layout of the master pages within the report.
 Components Reusable report items defined in this design. Report items can 
extend these items. Defines a "private library" for this design.
 Body A list of the visual report content. Content is made up of one or more 
sections. A section is a report item that fills the width of the page. It can 
contain Text, Grid, List, Table, etc. elements
 Scratch Pad Temporary place to move report items while restructuring a report.
 Translations The list of externalized messages specifically for this report.
 Images A list of images embedded in this report.

Module allow to use the components defined in Library.
 * User can call includeLibrary(String, String)to include one library.
 * User can create one report item based on the one in library, and add it into 
design file.
 * User can use style, data source, and data set, which are defined in library, 
in design file.
 // Include one library

 
{code:java}
ReportDesignHandle designHandle = ...;
 designHandle.includeLibrary( "libA.rptlibrary", "LibA" );
 LibraryHandle libraryHandle = designHandle.getLibrary("LibA");
// Create one label based on the one in library
LabelHandle labelHandle = (LabelHandle) 
libraryHandle.findElement("companyNameLabel");
 LabelHandle myLabelHandle = (LabelHandle) 
designHandle.getElementFactory().newElementFrom( labelHandle, "myLabel" );
// Add the new label into design file
designHandle.getBody().add(myLabelHandle);
{code}
See Also:org.eclipse.birt.report.model.elements.ReportDesign

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-08-23 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17182696#comment-17182696
 ] 

Jacques Le Roux commented on OFBIZ-6638:


This is going to be tricky, and trickier in future, please refer to my comment 
in OFBIZ-11882:  https://markmail.org/message/qr7jvdlew3b7z2dj

bq.  BIRT is not evolving much nowadays. Here are links to possible BIRT 
current situation: https://www.eclipse.org/birt/ 
https://www.eclipse.org/forums/index.php/t/1089223/

"is not evolving much nowadays" is an understatement :(

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-08-23 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17182613#comment-17182613
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Hi Rohit,

Yes, but as we know we can't get back because of missing axis-1.4, or at least 
we don't know how. And the call to axis-1.4 does not depend on us but on 
org.eclipse.birt.runtime:viewservlets. Also Birt viewservlets seems somehow 
stale https://mvnrepository.com/artifact/org.eclipse.birt.runtime/viewservlets.

I again tried some Gradle tricks but none worked.

I then tried one more thing:
# I removed {{exclude group: 'org.eclipse.birt.runtime.3_7_1', module: 
'org.apache.batik.pdf'}} from birt/build.gradle. Unlike said in 
http://svn.apache.org/viewvc?view=revision=r1753886 it did not prevent 
Birt from working. But using the "Export as PDF" button rendered a blank page 
with nothing in log
# I then looked at the HTML generaed source and directly used the request 
there: 
https://localhost:8443/accounting/control/TrialBalanceSearchResultsPdf.pdf
# I got one more information: "Original error detected, maybe it would be helps 
you : org.eclipse.birt.report.engine.api.impl.ParameterValidationException: 
Required parameter customTimePeriodId is not set."
# I then passed the same (missing) arguments than for CSV: 
https://localhost:8443/accounting/control/TrialBalanceSearchResultsPdf.pdf?organizationPartyId=Company=6015.
 This needs to be checked in our code.

I then got another error in log:
{noformat}
2020-08-23 09:26:50,418 |sse-nio-8443-exec-10 |ControlServlet
|T| [[[accounting::TrialBalanceSearchResultsPdf.pdf (Domain:https://localhost)] 
Request Begun, encoding=[UTF-8]- total:0.0,since last(Begin):0.0]]
2020-08-23 09:26:50,500 |sse-nio-8443-exec-10 |ConfigXMLReader   
|I| controller loaded: 0.0s, 0 requests, 0 views in 
file:/C:/projectsASF/Git/ofbiz-framework/framework/common/webcommon/WEB-INF/handlers-controller.xml
2020-08-23 09:26:50,501 |sse-nio-8443-exec-10 |ConfigXMLReader   
|I| controller loaded: 0.019s, 51 requests, 21 views in 
file:/C:/projectsASF/Git/ofbiz-framework/framework/common/webcommon/WEB-INF/common-controller.xml
2020-08-23 09:26:50,524 |sse-nio-8443-exec-10 |ConfigXMLReader   
|I| controller loaded: 0.0s, 4 requests, 0 views in 
file:/C:/projectsASF/Git/ofbiz-framework/applications/commonext/webapp/WEB-INF/controller.xml
2020-08-23 09:26:50,531 |sse-nio-8443-exec-10 |ConfigXMLReader   
|I| controller loaded: 0.072s, 512 requests, 241 views in 
file:/C:/projectsASF/Git/ofbiz-framework/applications/accounting/webapp/accounting/WEB-INF/controller.
xml
2020-08-23 09:26:50,531 |sse-nio-8443-exec-10 |ConfigXMLReader   
|I| controller loaded: 0.093s, 9 requests, 9 views in 
file:/C:/projectsASF/Git/ofbiz-framework/plugins/birt/webapp/accounting/WEB-INF/controller.xml
2020-08-23 09:26:50,596 |sse-nio-8443-exec-10 |RequestHandler
|I| Ran Event 
[groovy:component://birt/groovyScripts/accounting/TrialBalanceParameters.groovy#]
 from [request], result is [success]
2020-08-23 09:26:50,597 |sse-nio-8443-exec-10 |RequestHandler
|I| Rendering View [TrialBalanceSearchResultsPdf].  Hidden sessionId by default.
2020-08-23 09:26:50,598 |sse-nio-8443-exec-10 |BirtFactory   
|I| Got report in 0.001s from: 
file:/C:/projectsASF/Git/ofbiz-framework/plugins/birt/webapp/accounting/reports/TrialBalance.rptdesign
2020-08-23 09:26:50,610 |sse-nio-8443-exec-10 |BirtWorker
|I| Get report engine
2020-08-23 09:26:50,610 |sse-nio-8443-exec-10 |BirtWorker
|I| Set BIRT locale:en
2020-08-23 09:26:50,612 |sse-nio-8443-exec-10 |BirtWorker
|I| BIRT's locale is: en
2020-08-23 09:26:50,612 |sse-nio-8443-exec-10 |BirtWorker
|I| Run report's task
2020-08-23 09:26:51,391 |sse-nio-8443-exec-10 |ControlServlet
|E| Error in request handler:
org.eclipse.birt.report.engine.api.EngineException: Error happened while 
running the report.
at 
org.eclipse.birt.report.engine.api.impl.EngineTask.handleFatalExceptions(EngineTask.java:2363)
 ~[org.eclipse.birt.runtime-4.4.1.jar:?]
at 
org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.doRun(RunAndRenderTask.java:191)
 ~[org.eclipse.birt.runtime-4.4.1.jar:?]
at 
org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:77)
 ~[org.eclipse.birt.runtime-4.4.1.jar:?]
at org.apache.ofbiz.birt.BirtWorker.exportReport(BirtWorker.java:157) 
~[main/:?]
at 
org.apache.ofbiz.birt.webapp.view.BirtViewHandler.render(BirtViewHandler.java:145)
 ~[main/:?]
at 
org.apache.ofbiz.webapp.control.RequestHandler.renderView(RequestHandler.java:1183)
 ~[main/:?]
at 
org.apache.ofbiz.webapp.control.RequestHandler.doRequest(RequestHandler.java:908)
 ~[main/:?]
   

[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-08-22 Thread Rohit Koushal (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17182459#comment-17182459
 ] 

Rohit Koushal commented on OFBIZ-6638:
--

[~jleroux]: Basically that updated jar is not compatible with the current 
implementation. Either we need to move back to old jar version or we need to 
update current code. :) 

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-08-22 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17182376#comment-17182376
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Oops, wrong copied link above :/ 

Anyawy, seems that [~lalit.dashora] has a clue at OFBIZ-8376

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-02-28 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17047610#comment-17047610
 ] 

Jacques Le Roux commented on OFBIZ-6638:


This may prove useful too: 
http://svn.apache.org/viewvc?view=revision=1623042

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-02-28 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17047366#comment-17047366
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Hi Rohit,

I tried hard to find a way or a place, dead end :/ But we should not resign ;)

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-02-27 Thread Rohit Koushal (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17047254#comment-17047254
 ] 

Rohit Koushal commented on OFBIZ-6638:
--

I tried same past week and faced same error, possibly due to that axis-1.4.jar 
has been moved somewhere esle in the jcenter repository.

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-02-27 Thread Jacques Le Roux (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17046879#comment-17046879
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Mmm,

I tried to replace in birt build.gradle
pluginLibsCompile('org.eclipse.birt.runtime:viewservlets:4.5.0')
by
pluginLibsCompile('org.eclipse.birt.runtime:viewservlets:4.3.1')
and, even when adding mavenCentral() repository, got

{noformat}
FAILURE: Build failed with an exception.

* Where:
Build file 'C:\projectsASF\Git\ofbiz-framework\build.gradle' line: 1043

* What went wrong:
A problem occurred evaluating root project 'ofbiz'.
> Could not resolve all files for configuration ':runtimeClasspath'.
   > Could not find commons-discovery:axis:1.4.
 Searched in the following locations:
   - https://jcenter.bintray.com/commons-discovery/axis/1.4/axis-1.4.pom
   - https://jcenter.bintray.com/commons-discovery/axis/1.4/axis-1.4.jar
   - 
file:/C:/Users/Jacques/.m2/repository/commons-discovery/axis/1.4/axis-1.4.pom
   - 
file:/C:/Users/Jacques/.m2/repository/commons-discovery/axis/1.4/axis-1.4.jar
   - 
https://repo.maven.apache.org/maven2/commons-discovery/axis/1.4/axis-1.4.pom
   - 
https://repo.maven.apache.org/maven2/commons-discovery/axis/1.4/axis-1.4.jar
 Required by:
 project : > project :plugins:birt > 
org.eclipse.birt.runtime:viewservlets:4.3.1
{noformat}

Any ideas?

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 16.11, Release Branch 18.12, Release 
> Branch 17.12, Trunk
>Reporter: Jacques Le Roux
>Assignee: Jacques Le Roux
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2020-02-22 Thread Rohit Koushal (Jira)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17042577#comment-17042577
 ] 

Rohit Koushal commented on OFBIZ-6638:
--

It looks like the birt jar is upgraded to 4.5.0 from 4.3.1 under commit 
b995b676011aeb360a4f21ee96ef234037dc2b50 which is breaking the current 
implementation for the report.

 

Tagging [~taher]

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk, Release Branch 16.11, Release Branch 17.12, 
> Release Branch 18.12
>Reporter: Jacques Le Roux
>Assignee: Rohit Koushal
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2019-01-12 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16741257#comment-16741257
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Right Pierre, done

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Trunk, Release Branch 16.11, Release Branch 17.12, 
> Release Branch 18.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2019-01-12 Thread Pierre Smits (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16741243#comment-16741243
 ] 

Pierre Smits commented on OFBIZ-6638:
-

Then the 'affected version' field should be adjusted.

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2019-01-12 Thread Jacques Le Roux (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16741224#comment-16741224
 ] 

Jacques Le Roux commented on OFBIZ-6638:


Thanks Rohit,

Yes it works in R15 but not in trunk. R15 was never released and is no longer 
supported. I could not check stable (R16) on demo, someone messed up with the 
admin password and flexadmin has not accces to that. Anyway I'm pretty sure 
that R16, R17 and R18 have the same issue.

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk.ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (OFBIZ-6638) TrialBalance PDF export fails

2019-01-12 Thread Rohit Koushal (JIRA)


[ 
https://issues.apache.org/jira/browse/OFBIZ-6638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16741180#comment-16741180
 ] 

Rohit Koushal commented on OFBIZ-6638:
--

Hi [~jacques.le.roux]  and [~arunpati] ,

I am able to open TrialBalance on *Release Branch 15.12* after closing the time 
period.

Here is the screenshot for your reference 

!image-2019-01-12-14-53-56-292.png!

> TrialBalance PDF export fails
> -
>
> Key: OFBIZ-6638
> URL: https://issues.apache.org/jira/browse/OFBIZ-6638
> Project: OFBiz
>  Issue Type: Sub-task
>  Components: accounting
>Affects Versions: Release Branch 14.12, Trunk, Release Branch 15.12
>Reporter: Jacques Le Roux
>Assignee: Arun Patidar
>Priority: Major
> Fix For: 14.12.01, 15.12.01
>
> Attachments: OFBIZ-6638.patch, image-2019-01-12-14-53-56-292.png
>
>
> # Get to 
> http://demo-trunk-ofbiz.apache.org/accounting/control/TrialBalance?organizationPartyId=Company
> #pick a "Custom Time Period Id" (default works also)
> #Submit
> Then the CSV export works but not the PDF, this in trunk demo.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)