ProductSaleElementsQuery
class ProductSaleElementsQuery extends ProductSaleElementsQuery
Skeleton subclass for performing query and update operations on the 'productsaleelements' table.
You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.
Methods
Initializes internal state of \Thelia\Model\Base\ProductSaleElementsQuery object.
Returns a new ChildProductSaleElementsQuery object.
Find object by primary key.
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
Filter the query by primary key
Filter the query by a list of primary keys
Filter the query on the id column
Filter the query on the product_id column
Filter the query on the ref column
Filter the query on the quantity column
Filter the query on the promo column
Filter the query on the newness column
Filter the query on the weight column
Filter the query on the is_default column
Filter the query on the ean_code column
Filter the query on the created_at column
Filter the query on the updated_at column
Filter the query by a related \Thelia\Model\Product object
Adds a JOIN clause to the query using the Product relation
Use the Product relation Product object
Filter the query by a related \Thelia\Model\AttributeCombination object
Adds a JOIN clause to the query using the AttributeCombination relation
Use the AttributeCombination relation AttributeCombination object
Filter the query by a related \Thelia\Model\CartItem object
Adds a JOIN clause to the query using the CartItem relation
Use the CartItem relation CartItem object
Filter the query by a related \Thelia\Model\ProductPrice object
Adds a JOIN clause to the query using the ProductPrice relation
Use the ProductPrice relation ProductPrice object
Filter the query by a related \Thelia\Model\ProductSaleElementsProductImage object
Adds a JOIN clause to the query using the ProductSaleElementsProductImage relation
Use the ProductSaleElementsProductImage relation ProductSaleElementsProductImage object
Filter the query by a related \Thelia\Model\ProductSaleElementsProductDocument object
Adds a JOIN clause to the query using the ProductSaleElementsProductDocument relation
Use the ProductSaleElementsProductDocument relation ProductSaleElementsProductDocument object
Filter the query by a related ProductImage object using the productsaleelementsproductimage table as cross reference
Filter the query by a related ProductDocument object using the productsaleelementsproductdocument table as cross reference
Deletes all rows from the productsaleelements table.
Performs a DELETE on the database, given a ChildProductSaleElements or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by the id column
Order by the product_id column
Order by the ref column
Order by the quantity column
Order by the promo column
Order by the newness column
Order by the weight column
Order by the is_default column
Order by the ean_code column
Order by the created_at column
Order by the updated_at column
Group by the product_id column
Group by the quantity column
Group by the promo column
Group by the newness column
Group by the weight column
Group by the is_default column
Group by the ean_code column
Group by the created_at column
Group by the updated_at column
Adds a LEFT JOIN clause to the query
Adds a RIGHT JOIN clause to the query
Adds a INNER JOIN clause to the query
Adds a LEFT JOIN clause to the query using the Product relation
Adds a RIGHT JOIN clause to the query using the Product relation
Adds a INNER JOIN clause to the query using the Product relation
Adds a LEFT JOIN clause to the query using the AttributeCombination relation
Adds a RIGHT JOIN clause to the query using the AttributeCombination relation
Adds a INNER JOIN clause to the query using the AttributeCombination relation
Adds a LEFT JOIN clause to the query using the CartItem relation
Adds a RIGHT JOIN clause to the query using the CartItem relation
Adds a INNER JOIN clause to the query using the CartItem relation
Adds a LEFT JOIN clause to the query using the ProductPrice relation
Adds a RIGHT JOIN clause to the query using the ProductPrice relation
Adds a INNER JOIN clause to the query using the ProductPrice relation
Adds a LEFT JOIN clause to the query using the ProductSaleElementsProductImage relation
Adds a RIGHT JOIN clause to the query using the ProductSaleElementsProductImage relation
Adds a INNER JOIN clause to the query using the ProductSaleElementsProductImage relation
Adds a LEFT JOIN clause to the query using the ProductSaleElementsProductDocument relation
Adds a RIGHT JOIN clause to the query using the ProductSaleElementsProductDocument relation
Adds a INNER JOIN clause to the query using the ProductSaleElementsProductDocument relation
Return the first ChildProductSaleElements matching the query
Return the first ChildProductSaleElements matching the query, or a new ChildProductSaleElements object populated from the query conditions when no match is found
Return the first ChildProductSaleElements filtered by the id column
Return the first ChildProductSaleElements filtered by the product_id column
Return the first ChildProductSaleElements filtered by the ref column
Return the first ChildProductSaleElements filtered by the quantity column
Return the first ChildProductSaleElements filtered by the promo column
Return the first ChildProductSaleElements filtered by the newness column
Return the first ChildProductSaleElements filtered by the weight column
Return the first ChildProductSaleElements filtered by the is_default column
Return the first ChildProductSaleElements filtered by the ean_code column
Return the first ChildProductSaleElements filtered by the created_at column
Return the first ChildProductSaleElements filtered by the updated_at column
Return ChildProductSaleElements objects filtered by the id column
Return ChildProductSaleElements objects filtered by the product_id column
Return ChildProductSaleElements objects filtered by the ref column
Return ChildProductSaleElements objects filtered by the quantity column
Return ChildProductSaleElements objects filtered by the promo column
Return ChildProductSaleElements objects filtered by the newness column
Return ChildProductSaleElements objects filtered by the weight column
Return ChildProductSaleElements objects filtered by the is_default column
Return ChildProductSaleElements objects filtered by the ean_code column
Return ChildProductSaleElements objects filtered by the created_at column
Return ChildProductSaleElements objects filtered by the updated_at column
Details
in
ProductSaleElementsQuery at line 114
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\ProductSaleElements',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\ProductSaleElementsQuery object.
in
ProductSaleElementsQuery at line 127
static
ProductSaleElementsQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildProductSaleElementsQuery object.
in
ProductSaleElementsQuery at line 157
ProductSaleElements|array|mixed
findPk(
mixed $key,
ConnectionInterface $con = null)
Find object by primary key.
Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.
$obj = $c->findPk(12, $con);
in
ProductSaleElementsQuery at line 239
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
in
ProductSaleElementsQuery at line 260
ProductSaleElementsQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
in
ProductSaleElementsQuery at line 273
ProductSaleElementsQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
in
ProductSaleElementsQuery at line 297
ProductSaleElementsQuery
filterById(
mixed $id = null,
string $comparison = null)
Filter the query on the id column
Example usage:
$query->filterById(1234); // WHERE id = 1234
$query->filterById(array(12, 34)); // WHERE id IN (12, 34)
$query->filterById(array('min' => 12)); // WHERE id > 12
in
ProductSaleElementsQuery at line 340
ProductSaleElementsQuery
filterByProductId(
mixed $productId = null,
string $comparison = null)
Filter the query on the product_id column
Example usage:
$query->filterByProductId(1234); // WHERE productid = 1234
$query->filterByProductId(array(12, 34)); // WHERE productid IN (12, 34)
$query->filterByProductId(array('min' => 12)); // WHERE product_id > 12
in
ProductSaleElementsQuery at line 378
ProductSaleElementsQuery
filterByRef(
string $ref = null,
string $comparison = null)
Filter the query on the ref column
Example usage:
$query->filterByRef('fooValue'); // WHERE ref = 'fooValue'
$query->filterByRef('%fooValue%'); // WHERE ref LIKE '%fooValue%'
in
ProductSaleElementsQuery at line 410
ProductSaleElementsQuery
filterByQuantity(
mixed $quantity = null,
string $comparison = null)
Filter the query on the quantity column
Example usage:
$query->filterByQuantity(1234); // WHERE quantity = 1234
$query->filterByQuantity(array(12, 34)); // WHERE quantity IN (12, 34)
$query->filterByQuantity(array('min' => 12)); // WHERE quantity > 12
in
ProductSaleElementsQuery at line 451
ProductSaleElementsQuery
filterByPromo(
mixed $promo = null,
string $comparison = null)
Filter the query on the promo column
Example usage:
$query->filterByPromo(1234); // WHERE promo = 1234
$query->filterByPromo(array(12, 34)); // WHERE promo IN (12, 34)
$query->filterByPromo(array('min' => 12)); // WHERE promo > 12
in
ProductSaleElementsQuery at line 492
ProductSaleElementsQuery
filterByNewness(
mixed $newness = null,
string $comparison = null)
Filter the query on the newness column
Example usage:
$query->filterByNewness(1234); // WHERE newness = 1234
$query->filterByNewness(array(12, 34)); // WHERE newness IN (12, 34)
$query->filterByNewness(array('min' => 12)); // WHERE newness > 12
in
ProductSaleElementsQuery at line 533
ProductSaleElementsQuery
filterByWeight(
mixed $weight = null,
string $comparison = null)
Filter the query on the weight column
Example usage:
$query->filterByWeight(1234); // WHERE weight = 1234
$query->filterByWeight(array(12, 34)); // WHERE weight IN (12, 34)
$query->filterByWeight(array('min' => 12)); // WHERE weight > 12
in
ProductSaleElementsQuery at line 574
ProductSaleElementsQuery
filterByIsDefault(
boolean|string $isDefault = null,
string $comparison = null)
Filter the query on the is_default column
Example usage:
$query->filterByIsDefault(true); // WHERE isdefault = true
$query->filterByIsDefault('yes'); // WHERE isdefault = true
in
ProductSaleElementsQuery at line 598
ProductSaleElementsQuery
filterByEanCode(
string $eanCode = null,
string $comparison = null)
Filter the query on the ean_code column
Example usage:
$query->filterByEanCode('fooValue'); // WHERE eancode = 'fooValue'
$query->filterByEanCode('%fooValue%'); // WHERE eancode LIKE '%fooValue%'
in
ProductSaleElementsQuery at line 632
ProductSaleElementsQuery
filterByCreatedAt(
mixed $createdAt = null,
string $comparison = null)
Filter the query on the created_at column
Example usage:
$query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14'
$query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
in
ProductSaleElementsQuery at line 675
ProductSaleElementsQuery
filterByUpdatedAt(
mixed $updatedAt = null,
string $comparison = null)
Filter the query on the updated_at column
Example usage:
$query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14'
$query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
in
ProductSaleElementsQuery at line 706
ProductSaleElementsQuery
filterByProduct(
Product|ObjectCollection $product,
string $comparison = null)
Filter the query by a related \Thelia\Model\Product object
in
ProductSaleElementsQuery at line 731
ProductSaleElementsQuery
joinProduct(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Product relation
in
ProductSaleElementsQuery at line 766
ProductQuery
useProductQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Product relation Product object
in
ProductSaleElementsQuery at line 781
ProductSaleElementsQuery
filterByAttributeCombination(
AttributeCombination|ObjectCollection $attributeCombination,
string $comparison = null)
Filter the query by a related \Thelia\Model\AttributeCombination object
in
ProductSaleElementsQuery at line 804
ProductSaleElementsQuery
joinAttributeCombination(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the AttributeCombination relation
in
ProductSaleElementsQuery at line 839
AttributeCombinationQuery
useAttributeCombinationQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the AttributeCombination relation AttributeCombination object
in
ProductSaleElementsQuery at line 854
ProductSaleElementsQuery
filterByCartItem(
CartItem|ObjectCollection $cartItem,
string $comparison = null)
Filter the query by a related \Thelia\Model\CartItem object
in
ProductSaleElementsQuery at line 877
ProductSaleElementsQuery
joinCartItem(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the CartItem relation
in
ProductSaleElementsQuery at line 912
CartItemQuery
useCartItemQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the CartItem relation CartItem object
in
ProductSaleElementsQuery at line 927
ProductSaleElementsQuery
filterByProductPrice(
ProductPrice|ObjectCollection $productPrice,
string $comparison = null)
Filter the query by a related \Thelia\Model\ProductPrice object
in
ProductSaleElementsQuery at line 950
ProductSaleElementsQuery
joinProductPrice(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ProductPrice relation
in
ProductSaleElementsQuery at line 985
ProductPriceQuery
useProductPriceQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ProductPrice relation ProductPrice object
in
ProductSaleElementsQuery at line 1000
ProductSaleElementsQuery
filterByProductSaleElementsProductImage(
ProductSaleElementsProductImage|ObjectCollection $productSaleElementsProductImage,
string $comparison = null)
Filter the query by a related \Thelia\Model\ProductSaleElementsProductImage object
in
ProductSaleElementsQuery at line 1023
ProductSaleElementsQuery
joinProductSaleElementsProductImage(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ProductSaleElementsProductImage relation
in
ProductSaleElementsQuery at line 1058
ProductSaleElementsProductImageQuery
useProductSaleElementsProductImageQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ProductSaleElementsProductImage relation ProductSaleElementsProductImage object
in
ProductSaleElementsQuery at line 1073
ProductSaleElementsQuery
filterByProductSaleElementsProductDocument(
ProductSaleElementsProductDocument|ObjectCollection $productSaleElementsProductDocument,
string $comparison = null)
Filter the query by a related \Thelia\Model\ProductSaleElementsProductDocument object
in
ProductSaleElementsQuery at line 1096
ProductSaleElementsQuery
joinProductSaleElementsProductDocument(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the ProductSaleElementsProductDocument relation
in
ProductSaleElementsQuery at line 1131
ProductSaleElementsProductDocumentQuery
useProductSaleElementsProductDocumentQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the ProductSaleElementsProductDocument relation ProductSaleElementsProductDocument object
in
ProductSaleElementsQuery at line 1147
ProductSaleElementsQuery
filterByProductImage(
ProductImage $productImage,
string $comparison = Criteria::EQUAL)
Filter the query by a related ProductImage object using the productsaleelementsproductimage table as cross reference
in
ProductSaleElementsQuery at line 1164
ProductSaleElementsQuery
filterByProductDocument(
ProductDocument $productDocument,
string $comparison = Criteria::EQUAL)
Filter the query by a related ProductDocument object using the productsaleelementsproductdocument table as cross reference
in
ProductSaleElementsQuery at line 1179
ProductSaleElementsQuery
prune(
ProductSaleElements $productSaleElements = null)
Exclude object from result
in
ProductSaleElementsQuery at line 1194
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the productsaleelements table.
in
ProductSaleElementsQuery at line 1231
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildProductSaleElements or Criteria object OR a primary key value.
in
ProductSaleElementsQuery at line 1272
ProductSaleElementsQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
in
ProductSaleElementsQuery at line 1284
ProductSaleElementsQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
in
ProductSaleElementsQuery at line 1294
ProductSaleElementsQuery
lastUpdatedFirst()
Order by update date desc
in
ProductSaleElementsQuery at line 1304
ProductSaleElementsQuery
firstUpdatedFirst()
Order by update date asc
in
ProductSaleElementsQuery at line 1314
ProductSaleElementsQuery
lastCreatedFirst()
Order by create date desc
in
ProductSaleElementsQuery at line 1324
ProductSaleElementsQuery
firstCreatedFirst()
Order by create date asc
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderById($order = Criteria::ASC)
Order by the id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByProductId($order = Criteria::ASC)
Order by the product_id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByRef($order = Criteria::ASC)
Order by the ref column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByQuantity($order = Criteria::ASC)
Order by the quantity column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByPromo($order = Criteria::ASC)
Order by the promo column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByNewness($order = Criteria::ASC)
Order by the newness column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByWeight($order = Criteria::ASC)
Order by the weight column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByIsDefault($order = Criteria::ASC)
Order by the is_default column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByEanCode($order = Criteria::ASC)
Order by the ean_code column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupById()
Group by the id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByProductId()
Group by the product_id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByRef()
Group by the ref column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByQuantity()
Group by the quantity column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByPromo()
Group by the promo column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByNewness()
Group by the newness column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByWeight()
Group by the weight column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByIsDefault()
Group by the is_default column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByEanCode()
Group by the ean_code column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByCreatedAt()
Group by the created_at column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
groupByUpdatedAt()
Group by the updated_at column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinProduct($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Product relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinProduct($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Product relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinProduct($relationAlias = null)
Adds a INNER JOIN clause to the query using the Product relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinAttributeCombination($relationAlias = null)
Adds a LEFT JOIN clause to the query using the AttributeCombination relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinAttributeCombination($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the AttributeCombination relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinAttributeCombination($relationAlias = null)
Adds a INNER JOIN clause to the query using the AttributeCombination relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinCartItem($relationAlias = null)
Adds a LEFT JOIN clause to the query using the CartItem relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinCartItem($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the CartItem relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinCartItem($relationAlias = null)
Adds a INNER JOIN clause to the query using the CartItem relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinProductPrice($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ProductPrice relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinProductPrice($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ProductPrice relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinProductPrice($relationAlias = null)
Adds a INNER JOIN clause to the query using the ProductPrice relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinProductSaleElementsProductImage($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ProductSaleElementsProductImage relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinProductSaleElementsProductImage($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ProductSaleElementsProductImage relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinProductSaleElementsProductImage($relationAlias = null)
Adds a INNER JOIN clause to the query using the ProductSaleElementsProductImage relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
leftJoinProductSaleElementsProductDocument($relationAlias = null)
Adds a LEFT JOIN clause to the query using the ProductSaleElementsProductDocument relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
rightJoinProductSaleElementsProductDocument($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the ProductSaleElementsProductDocument relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElementsQuery
innerJoinProductSaleElementsProductDocument($relationAlias = null)
Adds a INNER JOIN clause to the query using the ProductSaleElementsProductDocument relation
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOne(
ConnectionInterface $con = null)
Return the first ChildProductSaleElements matching the query
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildProductSaleElements matching the query, or a new ChildProductSaleElements object populated from the query conditions when no match is found
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneById(
int $id)
Return the first ChildProductSaleElements filtered by the id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByProductId(
int $product_id)
Return the first ChildProductSaleElements filtered by the product_id column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByRef(
string $ref)
Return the first ChildProductSaleElements filtered by the ref column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByQuantity(
double $quantity)
Return the first ChildProductSaleElements filtered by the quantity column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByPromo(
int $promo)
Return the first ChildProductSaleElements filtered by the promo column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByNewness(
int $newness)
Return the first ChildProductSaleElements filtered by the newness column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByWeight(
double $weight)
Return the first ChildProductSaleElements filtered by the weight column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByIsDefault(
boolean $is_default)
Return the first ChildProductSaleElements filtered by the is_default column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByEanCode(
string $ean_code)
Return the first ChildProductSaleElements filtered by the ean_code column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByCreatedAt(
string $created_at)
Return the first ChildProductSaleElements filtered by the created_at column
in
ProductSaleElementsQuery at line 104
ChildProductSaleElements
findOneByUpdatedAt(
string $updated_at)
Return the first ChildProductSaleElements filtered by the updated_at column
in
ProductSaleElementsQuery at line 104
array
findById(
int $id)
Return ChildProductSaleElements objects filtered by the id column
in
ProductSaleElementsQuery at line 104
array
findByProductId(
int $product_id)
Return ChildProductSaleElements objects filtered by the product_id column
in
ProductSaleElementsQuery at line 104
array
findByRef(
string $ref)
Return ChildProductSaleElements objects filtered by the ref column
in
ProductSaleElementsQuery at line 104
array
findByQuantity(
double $quantity)
Return ChildProductSaleElements objects filtered by the quantity column
in
ProductSaleElementsQuery at line 104
array
findByPromo(
int $promo)
Return ChildProductSaleElements objects filtered by the promo column
in
ProductSaleElementsQuery at line 104
array
findByNewness(
int $newness)
Return ChildProductSaleElements objects filtered by the newness column
in
ProductSaleElementsQuery at line 104
array
findByWeight(
double $weight)
Return ChildProductSaleElements objects filtered by the weight column
in
ProductSaleElementsQuery at line 104
array
findByIsDefault(
boolean $is_default)
Return ChildProductSaleElements objects filtered by the is_default column
in
ProductSaleElementsQuery at line 104
array
findByEanCode(
string $ean_code)
Return ChildProductSaleElements objects filtered by the ean_code column
in
ProductSaleElementsQuery at line 104
array
findByCreatedAt(
string $created_at)
Return ChildProductSaleElements objects filtered by the created_at column
in
ProductSaleElementsQuery at line 104
array
findByUpdatedAt(
string $updated_at)
Return ChildProductSaleElements objects filtered by the updated_at column