Exemple #1
0
 /**
  * Lists all Item models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = new ItemSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     $item = Item::find(1)->one();
     echo '<pre>';
     print_r($item->getInvoices()->asArray()->all());
     echo '</pre>';
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }
Exemple #2
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Item::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, 'price' => $this->price, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at]);
     $query->andFilterWhere(['like', 'product_name', $this->product_name])->andFilterWhere(['like', 'created_by', $this->created_by])->andFilterWhere(['like', 'updated_by', $this->updated_by]);
     return $dataProvider;
 }