/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Size::find(); $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; } $query->andFilterWhere(['id' => $this->id]); $query->andFilterWhere(['like', 'volume', $this->volume]); return $dataProvider; }
/** * Finds the Size model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Size the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Size::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }
?> <?php echo $form->field($model, 'brand_id')->dropDownList(ArrayHelper::map(Brand::find()->all(), 'id', 'name'), ['prompt' => 'Выберите бренд']); ?> <?php echo $form->field($model, 'mark_id')->dropDownList(ArrayHelper::map(Mark::find()->all(), 'id', 'name'), ['prompt' => 'Выберите марку']); ?> <?php echo $form->field($model, 'typebeer_id')->dropDownList(ArrayHelper::map(Typebeer::find()->all(), 'id', 'name'), ['prompt' => 'Выберите тип']); ?> <?php echo $form->field($model, 'size_id')->dropDownList(ArrayHelper::map(Size::find()->all(), 'id', 'volume'), ['prompt' => 'Выберите объём']); ?> <?php echo $form->field($model, 'shop_id')->dropDownList(ArrayHelper::map(Shop::find()->all(), 'id', 'name'), ['prompt' => 'Выберите магазин']); ?> <?php echo $form->field($model, 'price')->textInput(); ?> <?php echo $form->field($model, 'date')->textInput(); ?>
/** * @return \yii\db\ActiveQuery */ public function getSize() { return $this->hasOne(Size::className(), ['id' => 'size_id']); }