guild/common/models/TaskUser.php

71 lines
1.6 KiB
PHP
Raw Normal View History

2021-11-23 13:13:19 +03:00
<?php
namespace common\models;
use Yii;
use yii\db\ActiveQuery;
2021-11-23 13:13:19 +03:00
/**
* This is the model class for table "task_user".
*
* @property int $id
* @property int $task_id
* @property int $project_user_id
*
* @property ProjectUser $projectUser
* @property Task $task
*/
class TaskUser extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'task_user';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['task_id', 'project_user_id'], 'integer'],
['project_user_id', 'unique', 'targetAttribute' => ['task_id', 'project_user_id'], 'message'=>'Этот сотрудник уже назначен на эту задачу'],
2021-11-23 13:13:19 +03:00
[['project_user_id'], 'exist', 'skipOnError' => true, 'targetClass' => ProjectUser::className(), 'targetAttribute' => ['project_user_id' => 'id']],
[['task_id'], 'exist', 'skipOnError' => true, 'targetClass' => Task::className(), 'targetAttribute' => ['task_id' => 'id']],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'task_id' => 'Задача',
'project_user_id' => 'Сотрудник',
2021-11-23 13:13:19 +03:00
];
}
/**
* @return ActiveQuery
2021-11-23 13:13:19 +03:00
*/
public function getProjectUser()
{
return $this->hasOne(ProjectUser::className(), ['id' => 'project_user_id']);
}
/**
* @return ActiveQuery
2021-11-23 13:13:19 +03:00
*/
public function getTask()
{
return $this->hasOne(Task::className(), ['id' => 'task_id']);
}
2021-11-25 12:33:08 +03:00
2021-11-23 13:13:19 +03:00
}