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])

View File

@ -26,7 +26,7 @@ use yii\widgets\ActiveForm;
</div>
</div>
<div class="row" style="padding-bottom: 15px">
<div class="row" style="padding-bottom: 15px">add_a_test_task_completion_date_to_ucer_card
<div class="imgUpload col-xs-6">
<div class="media__upload_img"><img src="<?= $model->photo; ?>" width="100px"/></div>
<?php
@ -176,6 +176,28 @@ use yii\widgets\ActiveForm;
'language' => 'ru',
]
]); ?>
<div class="row">
<div class="col-xs-6">
<?= $form->field($model, 'test_task_getting_date')->input(
'date',
[
'language' => 'en',
"data-format" => "DD MMMM YYYY",
]
) ?>
</div>
<div class="col-xs-6">
<?= $form->field($model, 'test_task_complete_date')->input(
'date',
[
'language' => 'en',
"data-format" => "DD MMMM YYYY",
]
) ?>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<?= $form->field($model, 'achievements')->widget(Select2::class,

View File

@ -88,7 +88,15 @@ $this->params['breadcrumbs'][] = $this->title;
[
'attribute' => 'vc_text',
'format' => 'raw'
]
],
[
'attribute' => 'test_task_getting_date',
'format' => ['datetime', 'php:d.m.Y']
],
[
'attribute' => 'test_task_complete_date',
'format' => ['datetime', 'php:d.m.Y']
],
],
]) ?>

View File

@ -36,6 +36,8 @@ use yii\helpers\ArrayHelper;
* @property int $position_id
* @property int $city
* @property int $level
* @property string $test_task_getting_date
* @property string $test_task_complete_date
*
* @property FieldsValue[] $fieldsValues
* @property ProjectUser[] $projectUsers
@ -103,7 +105,7 @@ class UserCard extends \yii\db\ActiveRecord
return [
[['fio', 'status', 'gender', 'email', 'level', 'position_id'], 'required'],
[['gender', 'status', 'position_id', 'id_user', 'level', 'years_of_exp'], 'integer'],
[['dob', 'created_at', 'updated_at', 'deleted_at', 'vc_text', 'vc_text_short'], 'safe'],
[['dob', 'created_at', 'updated_at', 'deleted_at', 'vc_text', 'vc_text_short', 'test_task_getting_date', 'test_task_complete_date'], 'safe'],
['email', 'unique', 'message'=>'Почтовый адрес уже используется'],
[['fio', 'passport', 'photo', 'email', 'resume', 'city', 'link_vk', 'link_telegram', 'specification'], 'string', 'max' => 255],
[['salary'], 'string', 'max' => 100],
@ -140,7 +142,9 @@ class UserCard extends \yii\db\ActiveRecord
'vc_text_short' => 'Резюме короткий текст',
'level' => 'Уровень',
'years_of_exp' => 'Лет опыта',
'specification' => 'Спецификация'
'specification' => 'Спецификация',
'test_task_getting_date' => 'Дата получения тестового',
'test_task_complete_date' => 'Дата выполнения тестового',
];
}

View File

@ -0,0 +1,27 @@
<?php
use yii\db\Migration;
/**
* Handles adding columns to table `{{%user_card}}`.
*/
class m220307_081259_add_test_task_completion_date_column_to_user_card_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->addColumn('user_card', 'test_task_getting_date', $this->date()->defaultValue(null));
$this->addColumn('user_card', 'test_task_complete_date', $this->date()->defaultValue(null));
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropColumn('user_card', 'test_task_getting_date');
$this->dropColumn('user_card', 'test_task_complete_date');
}
}