Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAccountTaxes()
 {
     return $this->hasMany(AccountTax::className(), ['parent_id' => 'id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTax()
 {
     return $this->hasOne(AccountTax::className(), ['id' => 'tax_id']);
 }