-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MOD] Allow ConnectionExpression as DataSource for Subreports #80
Open
Maartincm
wants to merge
1
commit into
JayVora-SerpentCS:11.0
Choose a base branch
from
Maartincm:11.0-Allow_ConnectionExpression_Subreports
base: 11.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[MOD] Allow ConnectionExpression as DataSource for Subreports #80
Maartincm
wants to merge
1
commit into
JayVora-SerpentCS:11.0
from
Maartincm:11.0-Allow_ConnectionExpression_Subreports
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
It is already working for me
Da: "Maartincm" <[email protected]>
A: "JayVora-SerpentCS/Jasperreports_odoo" <[email protected]>
Cc: "Subscribed" <[email protected]>
Inviato: Venerdì, 25 gennaio 2019 5:51:01
Oggetto: [JayVora-SerpentCS/Jasperreports_odoo] [MOD] Allow ConnectionExpression as DataSource for Subreports (#80)
Something like this:
< subreport >
< reportElement x = " 255 " y = " 40 " width = " 300 " height = " 20 " >
< printWhenExpression > <![CDATA[ $F{Invoice_line_tax} != "N/A" ]]> </ printWhenExpression >
</ reportElement >
< subreportParameter name = " IDS " >
< subreportParameterExpression > <![CDATA[ $F{Invoice_id} ]]> </ subreportParameterExpression >
</ subreportParameter >
< connectionExpression > <![CDATA[ $P{REPORT_CONNECTION} ]]> </ connectionExpression >
< subreportExpression class = " java.lang.String " > <![CDATA[ $P{SUBREPORT_DIR} + "invoice_v11_tax_subreport.jasper" ]]> </ subreportExpression >
</ subreport >
was giving the following error:
<Fault 0: 'Failed to invoke method execute in class com.nantic.jasperreports.JasperServer: Resource not found at: /...../custom_reports/invoice_v11_tax_subreport.jasper
.'>
This PR aims to fix that.
You can view, comment on, or merge this pull request online at:
[ #80 | #80 ]
Commit Summary
* [MOD] Allow ConnectionExpression as DataSource for Subreports
File Changes
* M [ https://github.com/JayVora-SerpentCS/Jasperreports_odoo/pull/80/files#diff-0 | jasper_reports/JasperReports/jasper_report.py ] (5)
Patch Links:
* [ https://github.com/JayVora-SerpentCS/Jasperreports_odoo/pull/80.patch | https://github.com/JayVora-SerpentCS/Jasperreports_odoo/pull/80.patch ]
* [ https://github.com/JayVora-SerpentCS/Jasperreports_odoo/pull/80.diff | https://github.com/JayVora-SerpentCS/Jasperreports_odoo/pull/80.diff ]
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, [ #80 | view it on GitHub ] , or [ https://github.com/notifications/unsubscribe-auth/AJ4Mt-z8LXll-I3YxwXDI-CemMqvBca1ks5vGo01gaJpZM4aSM3H | mute the thread ] .
…--
Questo messaggio è stato analizzato con Libra ESVA ed è risultato non infetto.
|
Ok I will test it further. It was working for me too but not every time. |
if you want, send me the report
Da: "Maartincm" <[email protected]>
A: "JayVora-SerpentCS/Jasperreports_odoo" <[email protected]>
Cc: "Francesco Maioli" <[email protected]>, "Comment" <[email protected]>
Inviato: Venerdì, 25 gennaio 2019 13:07:40
Oggetto: Re: [JayVora-SerpentCS/Jasperreports_odoo] [MOD] Allow ConnectionExpression as DataSource for Subreports (#80)
Ok I will test it further. It was working for me too but not every time.
—
You are receiving this because you commented.
Reply to this email directly, [ #80 (comment) | view it on GitHub ] , or [ https://github.com/notifications/unsubscribe-auth/AJ4Mt840bVfMRsquybCBJv8BZXw68iTRks5vGvOMgaJpZM4aSM3H | mute the thread ] .
…--
Questo messaggio è stato analizzato con Libra ESVA ed è risultato non infetto.
|
@hiren-serpentcs Please take a look. |
@JayVora-SerpentCS sure will check it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Something like this:
was giving the following error:
This PR aims to fix that.