コード例 #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAssetCategory()
 {
     return $this->hasOne(AccountAssetCategory::className(), ['id' => 'asset_category_id']);
 }
コード例 #2
0
ファイル: AccountAccount.php プロジェクト: hendri30/OpenPrint
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAccountAssetCategories()
 {
     return $this->hasMany(AccountAssetCategory::className(), ['account_expense_depreciation_id' => 'id']);
 }