Merge pull request #34 from apuc/sum_and_calendar

remove spaces from password
This commit is contained in:
kavalar 2020-01-24 11:21:10 +03:00 committed by GitHub
commit 8aaa7c0ab4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -64,6 +64,12 @@ class UserCard extends \common\models\UserCard
} }
} }
public function beforeSave($insert)
{
$this->salary = str_replace(' ', '', \Yii::$app->request->post('UserCard')['salary']);
return parent::beforeSave($insert); // TODO: Change the autogenerated stub
}
public function afterSave($insert, $changedAttributes) public function afterSave($insert, $changedAttributes)
{ {
$post = \Yii::$app->request->post('UserCard'); $post = \Yii::$app->request->post('UserCard');

View File

@ -0,0 +1,17 @@
<?php
namespace console\controllers;
use Yii;
use yii\console\Controller;
class SqlController extends Controller
{
public function actionSalary()
{
$sql = "UPDATE user_card SET salary=REPLACE( `salary`, ' ', '' )";
Yii::$app->db->createCommand($sql)->execute();
}
}