Beispiel #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Shippings::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['ShippingId' => $this->ShippingId, 'OrderId' => $this->OrderId, 'OrderDetailId' => $this->OrderDetailId, 'ShippingTypeId' => $this->ShippingTypeId, 'ShippingStatusId' => $this->ShippingStatusId, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'deleted_at' => $this->deleted_at]);
     $query->andFilterWhere(['like', 'ShippingAddressText', $this->ShippingAddressText])->andFilterWhere(['like', 'ShippingPerson', $this->ShippingPerson])->andFilterWhere(['like', 'ShippingNumber', $this->ShippingNumber])->andFilterWhere(['like', 'Comment', $this->Comment]);
     return $dataProvider;
 }
Beispiel #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getShippings()
 {
     return $this->hasMany(Shippings::className(), ['ShippingStatusId' => 'ShippingStatusId']);
 }
 /**
  * Finds the Shippings model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Shippings the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Shippings::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Beispiel #4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getShippings()
 {
     return $this->hasMany(Shippings::className(), ['OrderId' => 'OrderId']);
 }