Ejemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = \frontend\modules\insurer\models\Insurers::find();
     // add conditions that should always apply here
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     // grid filtering conditions
     $query->andFilterWhere(['id' => $this->id]);
     $query->andFilterWhere(['like', 'name', $this->name]);
     return $dataProvider;
 }
Ejemplo n.º 2
0
            <th>
                Тип визита
            </th>
            <td>
            <?php 
echo $form->field($model, 'visit_type')->radioList([Records::CASH => 'Наличные', Records::INSURER => 'Страховая компания'])->label(FALSE);
?>
            </td>
        </tr>
        <tr>
            <th>
                Страховая компания
            </th>
            <td>
            <?php 
$list = ArrayHelper::map(Insurers::find()->orderBy('name')->all(), 'id', 'name');
echo $form->field($model, 'insurer_id')->widget(Select2::classname(), ['data' => $list, 'language' => 'ru', 'options' => ['placeholder' => 'Выберите страховщика ...'], 'pluginOptions' => ['allowClear' => true]])->label(FALSE);
?>
            </td>
        </tr>
    </table>
 
    <div class="form-group">
        <?php 
echo Html::submitButton('Сохранить', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']);
?>
    </div>
    <?php 
ActiveForm::end();
?>
Ejemplo n.º 3
0
 /**
  * Finds the Insurers model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Insurers the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Insurers::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 4
0
 /**
  * Получение страховщика
  * @return type
  */
 public function getInsurer()
 {
     return Insurers::findOne($this->insurer_id);
 }