/**
  * @return \yii\db\ActiveQuery
  */
 public function getCustofixos()
 {
     return $this->hasMany(Custofixo::className(), ['tipocustofixo_idtipocustofixo' => 'idtipocustofixo']);
 }
Exemple #2
0
 /**
  * @param $idconta
  * @return Custofixo
  */
 public function getCustofixo()
 {
     return $this->hasOne(Custofixo::className(), ['idconta' => 'idconta']);
 }