guild/common/models/Project.php

141 lines
3.6 KiB
PHP
Raw Normal View History

2018-10-11 11:15:09 +03:00
<?php
namespace common\models;
2018-12-03 12:10:39 +03:00
use common\classes\Debug;
2018-10-11 11:15:09 +03:00
use Yii;
use yii\behaviors\TimestampBehavior;
use yii\db\Expression;
2018-12-03 12:10:39 +03:00
use yii\helpers\ArrayHelper;
2018-10-11 11:15:09 +03:00
/**
* This is the model class for table "project".
*
* @property int $id
* @property string $name
* @property string $description
* @property string $created_at
* @property string $updated_at
2018-10-11 17:38:49 +03:00
* @property string $budget
* @property int $company_id
2018-11-21 17:02:14 +03:00
* @property int $hh_id
2018-10-11 17:38:49 +03:00
*
* @property FieldsValue[] $fieldsValues
* @property Company $company
* @property ProjectUser[] $projectUsers
2018-10-11 11:15:09 +03:00
*/
class Project extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'project';
}
public function behaviors()
{
return [
[
'class' => TimestampBehavior::class,
'createdAtAttribute' => 'created_at',
'updatedAtAttribute' => 'updated_at',
'value' => new Expression('NOW()'),
],
];
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
2023-01-24 17:32:46 +03:00
['name', 'unique'],
[['name', 'status'], 'required'],
2018-10-11 11:15:09 +03:00
[['description'], 'string'],
[['created_at', 'updated_at'], 'safe'],
2019-07-02 17:35:39 +03:00
[['status'], 'exist', 'skipOnError' => true, 'targetClass' => Status::class, 'targetAttribute' => ['status' => 'id']],
2018-10-11 11:15:09 +03:00
[['name'], 'string', 'max' => 255],
2018-10-11 17:38:49 +03:00
[['budget'], 'string', 'max' => 100],
[['company_id'], 'exist', 'skipOnError' => true, 'targetClass' => Company::class, 'targetAttribute' => ['company_id' => 'id']],
2018-11-21 17:02:14 +03:00
[['hh_id'], 'exist', 'skipOnError' => true, 'targetClass' => Hh::class, 'targetAttribute' => ['hh_id' => 'id']],
2018-10-11 11:15:09 +03:00
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'name' => 'Название',
'description' => 'Описание',
'created_at' => 'Дата создания',
2019-07-02 17:35:39 +03:00
'status' => 'Статус',
2018-10-11 11:15:09 +03:00
'updated_at' => 'Дата редактирования',
2018-10-11 17:38:49 +03:00
'budget' => 'Бюджет',
'company_id' => 'Компания',
2018-11-21 17:02:14 +03:00
'hh_id' => 'Проект на hh.ru',
2018-10-11 11:15:09 +03:00
];
}
2018-10-11 17:38:49 +03:00
/**
* @return \yii\db\ActiveQuery
*/
public function getFieldsValues()
{
2019-06-27 15:41:58 +03:00
return $this->hasMany(FieldsValueNew::class, ['item_id' => 'id'])->where(['item_type' => FieldsValueNew::TYPE_PROJECT])->with('field');
2018-10-11 17:38:49 +03:00
}
/**
* @return \yii\db\ActiveQuery
*/
public function getCompany()
{
return $this->hasOne(Company::class, ['id' => 'company_id']);
}
2018-11-21 17:02:14 +03:00
/**
* @return \yii\db\ActiveQuery
*/
public function getHh()
{
return $this->hasOne(Hh::class, ['id' => 'hh_id']);
}
2018-10-11 17:38:49 +03:00
/**
* @return \yii\db\ActiveQuery
*/
public function getProjectUsers()
{
return $this->hasMany(ProjectUser::class, ['project_id' => 'id']);
}
2018-12-03 12:10:39 +03:00
/**
* @return array
*/
public static function getList()
{
return ArrayHelper::map(self::find()->all(), 'id', 'name');
}
public static function getListName()
{
return ArrayHelper::map(self::find()->all(), 'name', 'name');
}
public function getUsersNameList()
{
$model = $this->getProjectUsers()->with('card')->all();
return ArrayHelper::getColumn($model, 'card.fio');
}
2019-07-02 17:35:39 +03:00
public function getStatus0()
{
return $this->hasOne(Status::class, ['id' => 'status']);
}
2018-10-11 11:15:09 +03:00
}