Package to generate reports with JasperReports 6 library through JasperStarter v3 command-line tool.
composer require chrmorandi/jasper
This package aims to be a solution to compile and process JasperReports (.jrxml & .jasper files).
JasperReports is the best open source solution for reporting.
Generating HTML + CSS to make a PDF. Never think about it, that doesn't make any sense! :p
Well, everything. JasperReports is a powerful tool for reporting and BI.
From their website:
The JasperReports Library is the world's most popular open source reporting engine. It is entirely written in Java and it is able to use data coming from any kind of data source and produce pixel-perfect documents that can be viewed, printed or exported in a variety of document formats including HTML, PDF, Excel, OpenOffice and Word.
I recommend using Jaspersoft Studio to build your reports, connect it to your datasource (ex: MySQL), loop thru the results and output it to PDF, XLS, DOC, RTF, ODF, etc.
What you can do with Jaspersoft:
Go to the examples directory in the root of the repository (vendor/chrmorandi/yii2-jasper/examples
).
Open the hello_world.jrxml
file with iReport or with your favorite text editor and take a look at the source code.
Check if you already have Java installed:
$ java -version
java version "1.8.0_91"
Java(TM) SE Runtime Environment (build 1.8.0_91-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.91-b14, mixed mode)
If you get:
command not found: java
Then install it with: (Ubuntu/Debian)
$ sudo apt-get install default-jdk
Now run the java -version
again and check if the output is ok.
Install Composer if you don't have it.
composer require chrmorandi/yii2-jasper
Or in your composer.json
file add:
{
"require": {
"chrmorandi/yii2-jasper": "*"
}
}
And the just run:
composer update
and thats it.
Use Data Source Name (DSN) for connection information with the database in format like Driver invocation. See http://php.net/manual/pt_BR/pdo.construct.php
return [
...
'components' => [
'jasper' => [
'class' => 'chrmorandi\jasper\Jasper::className()',
'redirect_output' => false, //optional
'resource_directory' => false, //optional
'locale' => 'pt_BR', //optional
'db' => [
'dsn' =>'psql:host=localhost;port=5432;dbname=myDatabase',
'username' => 'username',
'password' => 'password',
//'jdbcDir' => './jdbc', **Defaults to ./jdbc
//'jdbcUrl' => 'jdbc:postgresql://"+host+":"+port+"/"+dbname',
]
]
...
],
...
];
use chrmorandi\jasper\Jasper;
public function actionIndex()
{
// Set alias for sample directory
Yii::setAlias('example', '@vendor/chrmorandi/yii2-jasper/examples');
/* @var $jasper Jasper */
$jasper = Yii::$app->jasper;
// Compile a JRXML to Jasper
$jasper->compile(Yii::getAlias('@example') . '/hello_world.jrxml')->execute();
// Process a Jasper file to PDF and RTF (you can use directly the .jrxml)
$jasper->process(
Yii::getAlias('@example') . '/hello_world.jasper',
['php_version' => 'xxx'],
['pdf', 'rtf'],
false,
false
)->execute();
// List the parameters from a Jasper file.
$array = $jasper->listParameters(Yii::getAlias('@example') . '/hello_world.jasper')->execute();
// return pdf file
Yii::$app->response->sendFile(Yii::getAlias('@example') . '/hello_world.pdf');
}
We ship the MySQL connector (v5.1.39) in the /src/JasperStarter/jdbc/
directory.
We ship the PostgreSQL (v9.4-1208) in the /src/JasperStarter/jdbc/
directory.
Depends on the complexity, amount of data and the resources of your machine.
Is possible generate reports in the background.
MIT
Comments