| @@ -54,7 +54,8 @@ class BalanceSearch extends Balance | ||||
|      */ | ||||
|     public function search($params) | ||||
|     { | ||||
|         $query = Balance::find(); | ||||
|         $query = Balance::find()->distinct(); | ||||
|  | ||||
|         $query->leftJoin('fields_value_new','fields_value_new.item_id=balance.id AND fields_value_new.item_type=3'); | ||||
|         // add conditions that should always apply here | ||||
|         $dataProvider = new ActiveDataProvider([ | ||||
|   | ||||
| @@ -82,6 +82,8 @@ class UserCardSearch extends UserCard | ||||
|  | ||||
|         $query->andFilterWhere(['skill.id' => $this->skills]); | ||||
|  | ||||
|         $query->orderBy('user_card.created_at DESC'); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -5,15 +5,13 @@ use yii\helpers\Html; | ||||
| /* @var $this yii\web\View */ | ||||
| /* @var $model backend\modules\card\models\UserCard */ | ||||
|  | ||||
| $this->title = 'Update User Card: ' . $model->id; | ||||
| $this->title = $model->fio; | ||||
| $this->params['breadcrumbs'][] = ['label' => 'User Cards', 'url' => ['index']]; | ||||
| $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]]; | ||||
| $this->params['breadcrumbs'][] = 'Update'; | ||||
| ?> | ||||
| <div class="user-card-update"> | ||||
|  | ||||
|     <h1><?= Html::encode($this->title) ?></h1> | ||||
|  | ||||
|     <?= $this->render('_form', [ | ||||
|         'model' => $model, | ||||
|     ]) ?> | ||||
|   | ||||
| @@ -13,6 +13,7 @@ use backend\modules\company\models\Company; | ||||
|  */ | ||||
| class CompanySearch extends Company | ||||
| { | ||||
| //    public $status; | ||||
|     /** | ||||
|      * {@inheritdoc} | ||||
|      */ | ||||
| @@ -43,7 +44,6 @@ class CompanySearch extends Company | ||||
|     public function search($params) | ||||
|     { | ||||
|         $query = Company::find()->joinWith('project'); | ||||
|  | ||||
|         // add conditions that should always apply here | ||||
|  | ||||
|         $dataProvider = new ActiveDataProvider([ | ||||
| @@ -69,6 +69,7 @@ class CompanySearch extends Company | ||||
|  | ||||
|         $query->andFilterWhere(['like', 'name', $this->name]) | ||||
|             ->andFilterWhere(['like', 'description', $this->description]); | ||||
|         $query->orderBy('created_at DESC'); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
|   | ||||
| @@ -42,13 +42,13 @@ $this->params['breadcrumbs'][] = $this->title; | ||||
|             //'description:ntext', | ||||
|             //'status_id', | ||||
|             [ | ||||
|                 'attribute' => 'status', | ||||
|                 'attribute' => 'status_id', | ||||
|                 'value' => function($model){ | ||||
|                     return isset($model->status0->name) ? $model->status0->name : 'Не задано'; | ||||
|                     return isset($model->status->name) ? $model->status->name : 'Не задано'; | ||||
|                 }, | ||||
|                 'filter'    => kartik\select2\Select2::widget([ | ||||
|                     'model' => $searchModel, | ||||
|                     'attribute' => 'status', | ||||
|                     'attribute' => 'status_id', | ||||
|                     'data' => \common\models\Status::getStatusesArray(\common\models\UseStatus::USE_COMPANY), | ||||
|                     'options' => ['placeholder' => 'Начните вводить...','class' => 'form-control'], | ||||
|                     'pluginOptions' => [ | ||||
|   | ||||
| @@ -71,6 +71,7 @@ class HhJobSearch extends HhJob | ||||
|             ->andFilterWhere(['like', 'url', $this->url]) | ||||
|             ->andFilterWhere(['like', 'salary_currency', $this->salary_currency]) | ||||
|             ->andFilterWhere(['like', 'address', $this->address]); | ||||
|         $query->orderBy('dt_add DESC'); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
|   | ||||
| @@ -67,6 +67,7 @@ class HhSearch extends Hh | ||||
|         $query->andFilterWhere(['like', 'url', $this->url]) | ||||
|             ->andFilterWhere(['like', 'title', $this->title]) | ||||
|             ->andFilterWhere(['like', 'photo', $this->photo]); | ||||
|         $query->orderBy('dt_add DESC'); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
|   | ||||
| @@ -67,6 +67,7 @@ class ProjectSearch extends Project | ||||
|  | ||||
|         $query->andFilterWhere(['like', 'name', $this->name]) | ||||
|             ->andFilterWhere(['like', 'description', $this->description]); | ||||
|         $query->orderBy('created_at DESC'); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
|   | ||||
| @@ -63,7 +63,7 @@ class AdditionalFieldsSearch extends AdditionalFields | ||||
|         ]); | ||||
|  | ||||
|         $query->andFilterWhere(['like', 'name', $this->name]); | ||||
| //        Debug::dd($query->createCommand()->rawSql); | ||||
|  | ||||
|         return $dataProvider; | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 GitHub
						GitHub