Exemple #1
0
 /**
  * Updates an existing Goods model.
  * If update is successful, the browser will be redirected to the 'view' page.
  *
  * @param integer $id
  *
  * @return mixed
  */
 public function actionUpdate($id)
 {
     $model = $this->findModel($id);
     $sizes = ClothingSize::getAll(true, false);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('update', ['model' => $model, 'sizes' => $sizes]);
     }
 }
Exemple #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ClothingSize::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, 'status' => $this->status]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'descriptions', $this->descriptions]);
     return $dataProvider;
 }
Exemple #3
0
 public function actionChange($id)
 {
     $filterForm = new models\FiltersForm();
     $print = $this->loadPrint($id);
     $colors = models\ClothingColor::getAll(true, false);
     $sizes = models\ClothingSize::getAll(true, false);
     $sex = models\ClothingSex::getAll(true, false);
     $types = models\ClothingType::getAll(true, false);
     $post = Yii::$app->request->post();
     if ($post) {
         $filterForm->load(Yii::$app->request->post());
     } else {
         $filterForm->size = isset($sizes[0]->id) ? $sizes[0]->id : null;
         $filterForm->sex = isset($sex[0]->id) ? $sex[0]->id : 3;
         $filterForm->type = isset($types[0]->id) ? $types[0]->id : null;
         $filterForm->color = isset($colors[0]->id) ? $colors[0]->id : null;
     }
     $goods = $print->getGoodsByCriteria($filterForm->getActiveQueryFilterGoods());
     return $this->render('change', ['goods' => $goods, 'colors' => $colors, 'sizes' => $sizes, 'sex' => $sex, 'types' => $types, 'print' => $print, 'filterForm' => $filterForm]);
 }
Exemple #4
0
 /**
  * Возвращает массив идентификаторов одежды.
  *
  * @return yii\db\ActiveRecord[] | null
  */
 public function getGoods()
 {
     $ids = $this->getSizesIds();
     if (is_array($ids) && count($ids)) {
         $result = ClothingSize::findAll($ids);
         return $result;
     }
     return [];
 }
Exemple #5
0
 /**
  * Finds the ClothingSize model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ClothingSize the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ClothingSize::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }