/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Chitiethoadon::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_chitiethoadon' => $this->id_chitiethoadon, 'id_sanpham' => $this->id_sanpham, 'id_hoadon' => $this->id_hoadon, 'soluongmua' => $this->soluongmua, 'baohanh' => $this->baohanh, 'record_status' => $this->record_status]);
     $query->andFilterWhere(['like', 'khuyenmai', $this->khuyenmai]);
     return $dataProvider;
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getChitiethoadons()
 {
     return $this->hasMany(Chitiethoadon::className(), ['id_sanpham' => 'id_sanpham']);
 }
 /**
  * Finds the Chitiethoadon model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Chitiethoadon the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Chitiethoadon::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
示例#4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getChitiethoadons()
 {
     return $this->hasMany(Chitiethoadon::className(), ['hoadon_id' => 'hoadon_id']);
 }
示例#5
0
 public function actionPreview($id)
 {
     $model = Chitiethoadon::findOne($id);
     return $this->render('preview', ['model' => $model]);
 }