Esempio n. 1
0
 /**
  * Filter the query by a related \App\Propel\Unit object
  *
  * @param \App\Propel\Unit|ObjectCollection $unit The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @throws \Propel\Runtime\Exception\PropelException
  *
  * @return ChildUnitI18nQuery The current query, for fluid interface
  */
 public function filterByUnit($unit, $comparison = null)
 {
     if ($unit instanceof \App\Propel\Unit) {
         return $this->addUsingAlias(UnitI18nTableMap::COL_UNIT_ID, $unit->getUnitId(), $comparison);
     } elseif ($unit instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(UnitI18nTableMap::COL_UNIT_ID, $unit->toKeyValue('PrimaryKey', 'UnitId'), $comparison);
     } else {
         throw new PropelException('filterByUnit() only accepts arguments of type \\App\\Propel\\Unit or Collection');
     }
 }
Esempio n. 2
0
 /**
  * Filter the query by a related \App\Propel\UnitI18n object
  *
  * @param \App\Propel\UnitI18n|ObjectCollection $unitI18n the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildUnitQuery The current query, for fluid interface
  */
 public function filterByUnitI18n($unitI18n, $comparison = null)
 {
     if ($unitI18n instanceof \App\Propel\UnitI18n) {
         return $this->addUsingAlias(UnitTableMap::COL_UNIT_ID, $unitI18n->getUnitId(), $comparison);
     } elseif ($unitI18n instanceof ObjectCollection) {
         return $this->useUnitI18nQuery()->filterByPrimaryKeys($unitI18n->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByUnitI18n() only accepts arguments of type \\App\\Propel\\UnitI18n or Collection');
     }
 }
Esempio n. 3
0
 /**
  * Filter the query by a related \ORM\Stock object
  *
  * @param \ORM\Stock|ObjectCollection $stock  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildUnitQuery The current query, for fluid interface
  */
 public function filterByStock($stock, $comparison = null)
 {
     if ($stock instanceof \ORM\Stock) {
         return $this->addUsingAlias(UnitTableMap::COL_ID, $stock->getUnitId(), $comparison);
     } elseif ($stock instanceof ObjectCollection) {
         return $this->useStockQuery()->filterByPrimaryKeys($stock->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByStock() only accepts arguments of type \\ORM\\Stock or Collection');
     }
 }