Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDeliveryNoteLines()
 {
     return $this->hasMany(DeliveryNoteLine::className(), ['product_id' => 'id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDeliveryNoteLines()
 {
     return $this->hasMany(DeliveryNoteLine::className(), ['note_id' => 'id'])->orderBy('no, id ASC');
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNoteLine()
 {
     return $this->hasOne(DeliveryNoteLine::className(), ['id' => 'note_line_id']);
 }