/** * @return \yii\db\ActiveQuery */ public function getDeliveryNoteLines() { return $this->hasMany(DeliveryNoteLine::className(), ['product_id' => 'id']); }
/** * @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']); }