예제 #1
0
파일: Stage.php 프로젝트: Sheriyev/G5-CRM
 public function getBids()
 {
     return $this->hasMany(Bid::className(), ['obj_id' => 'id'])->where(['bid_type' => R::BID_STAGE]);
 }
예제 #2
0
파일: Notify.php 프로젝트: Sheriyev/G5-CRM
 public function getBid()
 {
     return $this->hasOne(Bid::className(), ['id' => 'bid_id']);
 }