/** * Filter the query by a related Expedientegasto object * * @param Expedientegasto|PropelObjectCollection $expedientegasto the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return GastofacturacionQuery The current query, for fluid interface * @throws PropelException - if the provided filter is invalid. */ public function filterByExpedientegasto($expedientegasto, $comparison = null) { if ($expedientegasto instanceof Expedientegasto) { return $this->addUsingAlias(GastofacturacionPeer::IDGASTOFACTURACION, $expedientegasto->getIdgastofacturacion(), $comparison); } elseif ($expedientegasto instanceof PropelObjectCollection) { return $this->useExpedientegastoQuery()->filterByPrimaryKeys($expedientegasto->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByExpedientegasto() only accepts arguments of type Expedientegasto or PropelCollection'); } }
/** * Filter the query by a related Expedientegasto object * * @param Expedientegasto|PropelObjectCollection $expedientegasto the related object to use as filter * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL * * @return ProveedoritradeQuery The current query, for fluid interface * @throws PropelException - if the provided filter is invalid. */ public function filterByExpedientegasto($expedientegasto, $comparison = null) { if ($expedientegasto instanceof Expedientegasto) { return $this->addUsingAlias(ProveedoritradePeer::IDPROVEEDORITRADE, $expedientegasto->getIdproveedoritrade(), $comparison); } elseif ($expedientegasto instanceof PropelObjectCollection) { return $this->useExpedientegastoQuery()->filterByPrimaryKeys($expedientegasto->getPrimaryKeys())->endUse(); } else { throw new PropelException('filterByExpedientegasto() only accepts arguments of type Expedientegasto or PropelCollection'); } }