/**
  * @return \yii\db\ActiveQuery
  */
 public function getShippings()
 {
     return $this->hasMany(Shippings::className(), ['ShippingStatusId' => 'ShippingStatusId']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getShippings()
 {
     return $this->hasMany(Shippings::className(), ['OrderId' => 'OrderId']);
 }