готовый календарь, немного мусора

This commit is contained in:
maxim
2021-09-06 16:23:20 +03:00
parent 56d7afe055
commit cd7c620e1d
6 changed files with 2007 additions and 187 deletions

View File

@ -11,6 +11,7 @@ use yii\web\Response;
class AjaxController extends \yii\web\Controller
{
public function actionGetReportsForMonthByIdYearMonth($id, $year=null, $month=null){
if (!($year and $month)){
$searchModel->month = date('m');
@ -25,7 +26,13 @@ class AjaxController extends \yii\web\Controller
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
$reports = ['reports'=>array_column($dataProvider->getModels(), 'attributes')];
$reports = $dataProvider->getModels();
$reports_no_task = array_column($reports, 'attributes');
for ($i = 0; $i<count($reports); $i++){
$reports_no_task[$i]['today'] = array_column( $reports[$i]->task, 'attributes');
}
$reports = $reports_no_task;
$month = new Month($year.'-'.$month.'-01');
@ -33,7 +40,7 @@ class AjaxController extends \yii\web\Controller
$response->format = Response::FORMAT_JSON;
$response->content = json_encode(array_merge($reports,
$response->content = json_encode(array_merge(['reports' => $reports_no_task],
['month'=>(array)$month]));
$response->getHeaders()->set('Content-Type', 'application/json; charset=utf-8');