コード例 #1
0
ファイル: ResCountry.php プロジェクト: hendri30/OpenPrint
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getHrEmployees()
 {
     return $this->hasMany(HrEmployee::className(), ['country_id' => 'id']);
 }
コード例 #2
0
ファイル: HrDepartment.php プロジェクト: hendri30/OpenPrint
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getHrEmployees()
 {
     return $this->hasMany(HrEmployee::className(), ['department_id' => 'id']);
 }
コード例 #3
0
ファイル: ResPartner.php プロジェクト: hendri30/OpenPrint
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getHrEmployees()
 {
     return $this->hasMany(HrEmployee::className(), ['address_home_id' => 'id']);
 }