I have created a Reportico Project named "atom" and a Report called "Receipts" and then I created action=receipts in ReportController. This is the tutorial I followed:
Controller code :
public function actionReceipts()
{
return $this->render('receipts');
}
I created receipts.php
<?php
use yii\helpers\Html;
use yii\helpers\Url;
$this->title = Yii::t('app', 'Reports');
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="report-index">
<div class="container">
<div class="row">
<div class="col-sm-1">
</div>
<div class="col-sm-11">
<?php
$reportico = \Yii::$app->getModule('reportico');
$engine = $reportico->getReporticoEngine(); // Fetches reportico engine
$engine->access_mode = "ONEREPORT"; // Allows access to single specified report
$engine->initial_execute_mode = "PREPARE"; // Starts user in report criteria selection mode
$engine->initial_project = "atom"; // Name of report project folder
$engine->initial_report = "receipts"; // Name of report to run
$engine->bootstrap_styles = "3"; // Set to "3" for bootstrap v3, "2" for V2 or false for no bootstrap
$engine->force_reportico_mini_maintains = true; // Often required
$engine->bootstrap_preloaded = true; // true if you dont need Reportico to load its own bootstrap
$engine->clear_reportico_session = true; // Normally required
$engine->execute();
?>
</div>
</div>
</div>
</div>
my code should open
http://localhost/Atom/backend/web/index.php?r=report%2Freceipts
when i try it i got like the pic i attached
when i type the password that in config.php define('SW_ADMIN_PASSWORD','1234');
nothing showing .
i don't need to force user to type a password !
and i need to embed the report in Criteria Entry Mode .