guild/frontend/modules/api/models/ReportSearchForm.php

78 lines
1.8 KiB
PHP
Raw Normal View History

2021-07-28 17:08:08 +03:00
<?php
namespace frontend\modules\api\models;
use common\models\Reports;
2022-12-20 19:24:38 +03:00
use common\models\ReportsTask;
2021-07-28 17:08:08 +03:00
use yii\base\Model;
class ReportSearchForm extends Model
{
public $limit;
public $offset;
public $fromDate;
public $toDate;
public $user_card_id;
2021-12-06 17:07:27 +03:00
/**
* @var false
*/
public $byDate;
2022-02-15 12:42:56 +03:00
public $date;
2021-07-28 17:08:08 +03:00
public function __construct($config = [])
{
$this->limit = 10;
$this->offset = 0;
$this->user_card_id = null;
2021-07-28 17:08:08 +03:00
$this->toDate = date('Y-m-d', time());
$this->fromDate = date('Y-m-d', time());
2022-02-15 12:42:56 +03:00
$this->date = date('Y-m-d');
2021-12-06 17:07:27 +03:00
$this->byDate = false;
2021-07-28 17:08:08 +03:00
parent::__construct($config);
}
public function rules(): array
{
return [
2021-12-06 17:07:27 +03:00
[['byDate'], 'safe'],
// [['fromDate', 'toDate', 'date'], 'date', 'format' => 'Y-m-d'],
[['limit', 'offset', 'user_card_id'], 'integer', 'min' => 0],
2021-07-28 17:08:08 +03:00
];
}
public function byParams()
{
$queryBuilder = Reports::find()
2021-12-06 17:07:27 +03:00
->with('task');
if ($this->byDate) {
2022-02-15 12:42:56 +03:00
$queryBuilder->andWhere(['reports.created_at' => $this->date]);
2021-12-06 17:07:27 +03:00
} else {
$queryBuilder->andWhere(['between', 'reports.created_at', $this->fromDate, $this->toDate]);
}
$queryBuilder->limit($this->limit)
2021-07-28 17:08:08 +03:00
->offset($this->offset);
if (isset($this->user_card_id)) {
$queryBuilder->andWhere(['user_card_id' => $this->user_card_id]);
2021-07-28 17:08:08 +03:00
}
2021-08-03 15:52:25 +03:00
$data = $queryBuilder->asArray()->all();
2021-07-28 17:08:08 +03:00
return $data;
}
2022-12-20 19:24:38 +03:00
public function findByDate(): array
{
return Reports::find()
2023-01-19 14:50:55 +03:00
// ->joinWith('task')
->with('task')
->where(['user_card_id' => $this->user_card_id])
->andWhere(['created_at' => $this->date])
2022-12-20 19:24:38 +03:00
->all();
}
2021-07-28 17:08:08 +03:00
}