コード例 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = ExpensesTruck::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, 'create_date' => $this->create_date]);
     $query->andFilterWhere(['like', 'truck_license', $this->truck_license])->andFilterWhere(['like', 'order_id', $this->order_id])->andFilterWhere(['like', 'detail', $this->detail]);
     return $dataProvider;
 }
コード例 #2
0
 public function actionLoad_data()
 {
     $assign_id = \Yii::$app->request->post('assign_id');
     $Model = new ExpensesTruck();
     $result = $Model->find()->where(["assign_id" => $assign_id])->all();
     return $this->renderPartial('load', ["result" => $result]);
 }