add_a_test_task_completion_date_to_user_card

This commit is contained in:
iironside
2022-03-07 12:32:01 +03:00
parent daee4e3e68
commit e55583a44d
5 changed files with 68 additions and 5 deletions

View File

@ -21,7 +21,7 @@ class UserCardSearch extends UserCard
{
return [
[['id', 'gender', 'status'], 'integer'],
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city'], 'safe'],
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city', 'test_task_getting_date', 'test_task_complete_date'], 'safe'],
['skills', 'each', 'rule' => ['integer']],
];
}
@ -83,6 +83,8 @@ class UserCardSearch extends UserCard
'city' => $this->city,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
'test_task_getting_date' => $this->test_task_getting_date,
'test_task_complete_date' => $this->test_task_complete_date,
]);
$query->andFilterWhere(['like', 'fio', $this->fio])