* Просмотр 1 репорта
* Создание тасков
This commit is contained in:
parent
8e490ce518
commit
8ae7b9a125
@ -75,6 +75,7 @@ class Reports extends \yii\db\ActiveRecord
|
||||
foreach ($this->task as $task) {
|
||||
$this->_task[$i]['task'] = $task->task;
|
||||
$this->_task[$i]['hours_spent'] = $task->hours_spent;
|
||||
$this->_task[$i]['minutes_spent'] = $task->minutes_spent;
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
@ -19,6 +19,15 @@ use Yii;
|
||||
*/
|
||||
class ReportsTask extends \yii\db\ActiveRecord
|
||||
{
|
||||
const SCENARIO_WITHOUT_REPORT_ID = 'withoutReportID';
|
||||
|
||||
public function scenarios()
|
||||
{
|
||||
$scenarios = parent::scenarios();
|
||||
$scenarios[self::SCENARIO_WITHOUT_REPORT_ID] = self::attributes();
|
||||
return $scenarios;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -33,7 +42,7 @@ class ReportsTask extends \yii\db\ActiveRecord
|
||||
public function rules()
|
||||
{
|
||||
return [
|
||||
[['report_id'], 'required'],
|
||||
[['report_id'], 'required', 'on' => self::SCENARIO_DEFAULT],
|
||||
[['report_id', 'created_at', 'status', 'minutes_spent'], 'integer'],
|
||||
[['hours_spent'], 'number'],
|
||||
['minutes_spent', 'compare', 'compareValue' => 60, 'operator' => '<'],
|
||||
|
@ -84,6 +84,7 @@ return [
|
||||
'rules' => [
|
||||
'site/index' => 'card/user-card/index',
|
||||
'api/profile/<id:\d+>' => 'api/profile/index',
|
||||
'api/reports/<id:\d+>' => 'api/reports/view',
|
||||
'' => 'card/user-card/index',
|
||||
['class' => 'yii\rest\UrlRule', 'controller' => 'skills'],
|
||||
],
|
||||
|
@ -5,6 +5,7 @@ namespace frontend\modules\api\controllers;
|
||||
use common\behaviors\GsCors;
|
||||
use common\classes\Debug;
|
||||
use common\models\Reports;
|
||||
use common\models\ReportsTask;
|
||||
use frontend\modules\api\models\ReportSearchForm;
|
||||
use JsonException;
|
||||
use Yii;
|
||||
@ -48,7 +49,7 @@ class ReportsController extends Controller
|
||||
'authenticator' => [
|
||||
'class' => CompositeAuth::class,
|
||||
'authMethods' => [
|
||||
HttpBearerAuth::class,
|
||||
// HttpBearerAuth::class,
|
||||
],
|
||||
]
|
||||
];
|
||||
@ -67,20 +68,43 @@ class ReportsController extends Controller
|
||||
return $reportsModel->byParams();
|
||||
}
|
||||
|
||||
public function actionView($id): array{
|
||||
$report = Reports::findOne($id);
|
||||
return array_merge($report->toArray(), ['tasks' => $report->_task]);
|
||||
}
|
||||
|
||||
public function actionCreate()
|
||||
{
|
||||
$reportsModel = new Reports();
|
||||
|
||||
$params = Yii::$app->request->post();
|
||||
if (!isset($params['tasks'])){
|
||||
throw new BadRequestHttpException('Нет параметра tasks');
|
||||
}
|
||||
|
||||
$reportsModel = new Reports();
|
||||
$reportsModel->attributes = $params;
|
||||
|
||||
if(!$reportsModel->validate()){
|
||||
throw new BadRequestHttpException(json_encode($reportsModel->errors));
|
||||
}
|
||||
|
||||
$reportsModel->save();
|
||||
$tasks = [];
|
||||
foreach (json_decode($params['tasks'], true) as $jsonTask){
|
||||
$task = new ReportsTask();
|
||||
$task->scenario = ReportsTask::SCENARIO_WITHOUT_REPORT_ID;
|
||||
$task->attributes = $jsonTask;
|
||||
if (!$task->validate()) {
|
||||
throw new BadRequestHttpException(json_encode($task->errors));
|
||||
}
|
||||
$tasks []= $task->attributes;
|
||||
}
|
||||
$attributes = $task->attributes();
|
||||
|
||||
return $reportsModel->toArray();
|
||||
$reportsModel->save();
|
||||
$tasks = array_map(function ($task)use($reportsModel){$task['report_id'] = $reportsModel->id; return $task;}, $tasks);
|
||||
|
||||
Yii::$app->db->createCommand()->batchInsert(ReportsTask::tableName(), $attributes, $tasks)->execute();
|
||||
|
||||
return array_merge($reportsModel->toArray(), ['tasks' => $tasks]);
|
||||
}
|
||||
|
||||
public function actionDelete()
|
||||
|
Loading…
Reference in New Issue
Block a user