112 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace common\models;
 | 
						|
 | 
						|
use yii\behaviors\TimestampBehavior;
 | 
						|
use yii\db\Expression;
 | 
						|
 | 
						|
/**
 | 
						|
 * This is the model class for table "company".
 | 
						|
 *
 | 
						|
 * @property int $id
 | 
						|
 * @property string $name
 | 
						|
 * @property string $description
 | 
						|
 * @property int $status_id
 | 
						|
 * @property int $projectId
 | 
						|
 * @property string $created_at
 | 
						|
 * @property string $updated_at
 | 
						|
 *
 | 
						|
 * @property Status $status
 | 
						|
 * @property FieldsValue[] $fieldsValues
 | 
						|
 */
 | 
						|
class Company extends \yii\db\ActiveRecord
 | 
						|
{
 | 
						|
    public $projectId;
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public static function tableName()
 | 
						|
    {
 | 
						|
        return 'company';
 | 
						|
    }
 | 
						|
 | 
						|
    public function behaviors()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            [
 | 
						|
                'class' => TimestampBehavior::class,
 | 
						|
                'createdAtAttribute' => 'created_at',
 | 
						|
                'updatedAtAttribute' => 'updated_at',
 | 
						|
                'value' => new Expression('NOW()'),
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            [['name'], 'required'],
 | 
						|
            [['description'], 'string'],
 | 
						|
            [['status_id', 'projectId'], 'integer'],
 | 
						|
            [['created_at', 'updated_at'], 'safe'],
 | 
						|
            [['name'], 'string', 'max' => 255],
 | 
						|
            [['status_id'], 'exist', 'skipOnError' => true, 'targetClass' => Status::className(), 'targetAttribute' => ['status_id' => 'id']],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * {@inheritdoc}
 | 
						|
     */
 | 
						|
    public function attributeLabels()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'id' => 'ID',
 | 
						|
            'name' => 'Название',
 | 
						|
            'description' => 'Описание',
 | 
						|
            'status_id' => 'Статус',
 | 
						|
            'created_at' => 'Created At',
 | 
						|
            'updated_at' => 'Updated At',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getStatus()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Status::className(), ['id' => 'status_id']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getFieldsValues()
 | 
						|
    {
 | 
						|
        return $this->hasMany(FieldsValueNew::class, ['item_id' => 'id'])->where(['item_type' => FieldsValueNew::TYPE_COMPANY])->with('field');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getStatus0()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Status::class, ['id' => 'status']);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return \yii\db\ActiveQuery
 | 
						|
     */
 | 
						|
    public function getProject()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Project::class, ['company_id' => 'id']);
 | 
						|
    }
 | 
						|
 | 
						|
    public static function getTitle($id)
 | 
						|
    {
 | 
						|
        return self::findOne($id)->name;
 | 
						|
    }
 | 
						|
}
 |