2021-11-16 13:14:28 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace common\models;
|
|
|
|
|
|
|
|
use Yii;
|
2021-11-22 15:34:46 +03:00
|
|
|
use yii\db\ActiveQuery;
|
2022-01-14 10:09:02 +03:00
|
|
|
use yii\db\StaleObjectException;
|
2021-11-16 13:14:28 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the model class for table "manager".
|
|
|
|
*
|
|
|
|
* @property int $id
|
2023-04-20 02:07:19 +03:00
|
|
|
* @property int $user_id
|
2021-11-16 13:14:28 +03:00
|
|
|
*
|
2021-12-23 11:28:27 +03:00
|
|
|
* @property UserCard $userCard
|
2021-11-16 13:14:28 +03:00
|
|
|
* @property ManagerEmployee[] $managerEmployees
|
|
|
|
*/
|
|
|
|
class Manager extends \yii\db\ActiveRecord
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public static function tableName()
|
|
|
|
{
|
|
|
|
return 'manager';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2023-04-20 02:07:19 +03:00
|
|
|
[['user_id'], 'integer'],
|
|
|
|
[['user_id'], 'required'],
|
|
|
|
['user_id', 'unique', 'message' => 'Уже является менеджером'],
|
|
|
|
[['user_id'], 'exist', 'skipOnError' => true, 'targetClass' => UserCard::className(), 'targetAttribute' => ['user_id' => 'id']],
|
2021-11-16 13:14:28 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function attributeLabels()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'id' => 'ID',
|
2023-04-20 02:07:19 +03:00
|
|
|
'user_id' => 'Карточка менеджера',
|
2021-11-16 13:14:28 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2022-01-14 10:09:02 +03:00
|
|
|
/**
|
|
|
|
* @throws StaleObjectException
|
|
|
|
* @throws \Throwable
|
|
|
|
*/
|
2021-11-22 15:34:46 +03:00
|
|
|
public function beforeDelete()
|
|
|
|
{
|
2023-04-20 02:07:19 +03:00
|
|
|
foreach ($this->managerEmployees as $employee) {
|
2021-11-22 15:34:46 +03:00
|
|
|
$employee->delete();
|
|
|
|
}
|
|
|
|
return parent::beforeDelete();
|
|
|
|
}
|
|
|
|
|
2021-11-16 13:14:28 +03:00
|
|
|
/**
|
2021-11-22 15:34:46 +03:00
|
|
|
* @return ActiveQuery
|
2021-11-16 13:14:28 +03:00
|
|
|
*/
|
2023-04-20 02:07:19 +03:00
|
|
|
public function getUser()
|
2021-11-16 13:14:28 +03:00
|
|
|
{
|
2023-04-20 02:07:19 +03:00
|
|
|
return $this->hasOne(User::class, ['id' => 'user_id']);
|
2021-11-16 13:14:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-22 15:34:46 +03:00
|
|
|
* @return ActiveQuery
|
2021-11-16 13:14:28 +03:00
|
|
|
*/
|
|
|
|
public function getManagerEmployees()
|
|
|
|
{
|
|
|
|
return $this->hasMany(ManagerEmployee::className(), ['manager_id' => 'id']);
|
|
|
|
}
|
|
|
|
}
|