2021-09-06 10:29:50 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace backend\modules\reports\controllers;
|
|
|
|
|
|
|
|
use backend\modules\reports\models\Month;
|
|
|
|
use common\classes\Debug;
|
|
|
|
use Yii;
|
|
|
|
use backend\modules\reports\models\ReportsSearch;
|
|
|
|
use yii\web\JsonResponseFormatter;
|
|
|
|
use yii\web\Response;
|
|
|
|
|
|
|
|
class AjaxController extends \yii\web\Controller
|
|
|
|
{
|
2021-09-06 16:23:20 +03:00
|
|
|
|
2021-09-08 14:39:32 +03:00
|
|
|
public function actionGetReportsForMonthByIdYearMonth($user_id, $year, $month){
|
2021-09-06 10:29:50 +03:00
|
|
|
$searchModel = new ReportsSearch();
|
|
|
|
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
|
|
|
|
2021-09-06 16:23:20 +03:00
|
|
|
$reports = $dataProvider->getModels();
|
2021-09-08 14:39:32 +03:00
|
|
|
$reports_array = array_column($reports, 'attributes');
|
|
|
|
foreach ($reports as $i => $report){
|
|
|
|
$reports_array[$i]['today'] = array_column($report->task, 'attributes');
|
2021-09-06 16:23:20 +03:00
|
|
|
}
|
2021-09-06 10:29:50 +03:00
|
|
|
|
|
|
|
$response = Yii::$app->response;
|
|
|
|
$response->format = Response::FORMAT_JSON;
|
|
|
|
$response->getHeaders()->set('Content-Type', 'application/json; charset=utf-8');
|
2021-09-08 14:39:32 +03:00
|
|
|
$response->content = json_encode(array_merge(
|
|
|
|
['reports' => $reports_array],
|
|
|
|
['month' => (array)new Month($year.'-'.$month.'-01')])
|
|
|
|
);
|
2021-09-06 10:29:50 +03:00
|
|
|
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
}
|