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

How to use KoolReport in Yii2 framework? #9

Open
JacquesMarques opened this issue Mar 16, 2018 · 6 comments
Open

How to use KoolReport in Yii2 framework? #9

JacquesMarques opened this issue Mar 16, 2018 · 6 comments

Comments

@JacquesMarques
Copy link

Anybody has using KoolReport with YII2 (the last version of YII Framework)?

@vihugarcia
Copy link

vihugarcia commented Apr 20, 2018

I have installed it yesterday. So far so good. I'm using the advanced template and I have configured the reports to be displayed in the backend. In the simplest scenario steps are:

  1. Install using composer
  2. Create a folder to store the reports (in my case backend/reports)
  3. Create the reports according to documentation, for example OperationsReport
  4. In the desire action, create an instance of the report: $report = new OperationsReport();
  5. Render the view: return $this->renderPartial('report', ['report' => $report]); I had to use renderPartial or the layout got a little bit messed up

Those steps should work, BUT, at least in my case, I didn't have the level of control I needed over the report. So, I now follow these steps:

Steps 1 to 3 are the same
4. Create the view file, for example: OperationsReport.view. In this view I can display charts, Configure table headers, etc.
5. In the desire action, create an instance of the report: $report = new OperationsReporte();
6. Render the report: $report->run()->render();

One thing to note though, is that in this way, you have to modify your report file if you want to include bootstrap, jquery, etc:

class OperationsReport extends KoolReport
{
use \koolreport\clients\jQuery;
use \koolreport\clients\Bootstrap;
use \koolreport\clients\FontAwesome;

....

Also, you have to configure the assets array:

function settings()
{
return array(
"assets"=>array(
"path"=>"../web",
"url"=>"../",
),
...

Otherwise you won't have styles applied.

I hope this helps.

@koolphp
Copy link
Owner

koolphp commented Apr 21, 2018

Thanks Victor for your great answer.

@luica20
Copy link

luica20 commented Jan 29, 2019

I have installed it yesterday. So far so good. I'm using the advanced template and I have configured the reports to be displayed in the backend. In the simplest scenario steps are:

  1. Install using composer
  2. Create a folder to store the reports (in my case backend/reports)
  3. Create the reports according to documentation, for example OperationsReport
  4. In the desire action, create an instance of the report: $report = new OperationsReport();
  5. Render the view: return $this->renderPartial('report', ['report' => $report]); I had to use renderPartial or the layout got a little bit messed up

Those steps should work, BUT, at least in my case, I didn't have the level of control I needed over the report. So, I now follow these steps:

Steps 1 to 3 are the same
4. Create the view file, for example: OperationsReport.view. In this view I can display charts, Configure table headers, etc.
5. In the desire action, create an instance of the report: $report = new OperationsReporte();
6. Render the report: $report->run()->render();

One thing to note though, is that in this way, you have to modify your report file if you want to include bootstrap, jquery, etc:

class OperationsReport extends KoolReport
{
use \koolreport\clients\jQuery;
use \koolreport\clients\Bootstrap;
use \koolreport\clients\FontAwesome;

....

Also, you have to configure the assets array:

function settings()
{
return array(
"assets"=>array(
"path"=>"../web",
"url"=>"../",
),
...

Otherwise you won't have styles applied.

I hope this helps.

Can you paste an example please..???

@padmakanigem3s
Copy link

Hi vihugarcia,

Are you have any reference tutorial link.

@koolreport
Copy link

You may have a look at

https://github.com/koolreport/yii2-example

Also we have just release a package koolreport/yii2 to facilitate creating report inside Yii2

Best regards

@lloyd966
Copy link

lloyd966 commented Apr 7, 2021

I installed the extension as per the instructions, and I am getting the following error:

Unknown Class – yii\base\UnknownClassException

Unable to find 'app\reports\test' in file: D:\wamp64\www\pmtts/reports/test.php. Namespace missing?

Does anyone know why I would be getting this error, and how to fix it.

Any help would be greatly appreciated

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

No branches or pull requests

7 participants