Skip to content
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

sent parameters list int to report #164

Open
IsaacTurcios opened this issue Mar 14, 2024 · 1 comment
Open

sent parameters list int to report #164

IsaacTurcios opened this issue Mar 14, 2024 · 1 comment

Comments

@IsaacTurcios
Copy link

Hello,
I am trying to send a list int type parameter to my Jasper report with a postgresql connection but it gives me an error
Is there any way to do it?

parameters= {
'fechaIni': '24-02-2024',
'fechaFin': '24-02-2024',
'UserCreate': 'User1',
'companyId':1,
'cobradores_id': [148,150],
'partner_id':2,
'python_version' : python_version()

}
pyreportjasper = PyReportJasper()

in postgresql
where $X{IN, partner.cobrador_id , cobradores_id}
in jasperreport

error:
Error fill report: No matching overloads found for java.util.HashMap.put(str,list), options are:\n\tpublic java.lang.Object java.util.HashMap.put(java.lang.Object,java.lang.Object)\n'

@jadsonbr
Copy link
Collaborator

We have released version 2.1.4, which implements data typing for parameters sent to the reports. Please try using the new version and let us know about your experience.

Here's the link to the example: link

To find out the supported types up to this moment, access: Link

How to use:

import os
from pyreportjasper import PyReportJasper

def report_with_params():
    try:
        RESOURCES_DIR = os.path.abspath(os.path.dirname(__file__))
        REPORTS_DIR = os.path.abspath(os.path.dirname(__file__))
        input_file = os.path.join(REPORTS_DIR, "myteste2", "params.jrxml")
        output_file = os.path.join(REPORTS_DIR, "myteste2",  "output_file")

        pyreportjasper = PyReportJasper()
        pyreportjasper.config(
            input_file,
            output_file,
            output_formats=["pdf"],
            parameters={
                'myString': {
                    'value': 'TESTE STRING VALUE', 
                    'type': pyreportjasper.TypeJava.String
                },
                'myInt': {
                    'value': 1, 
                    'type': pyreportjasper.TypeJava.Integer
                },
                'myDate': {
                    'value': '24-02-2024', 
                    'type': pyreportjasper.TypeJava.Date, 
                    'format_input': 'dd-MM-yyyy'
                },
            }
        )
        pyreportjasper.process_report()
        print("Result is the file below.")
        print(output_file + ".pdf")
    except Exception as e:
        print(f"Error occurred: {e}")


report_with_params()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants