OrderCouponQuery
class OrderCouponQuery extends ModelCriteria
Base class that represents a query for the 'order_coupon' table.
Methods
Initializes internal state of \Thelia\Model\Base\OrderCouponQuery object.
Returns a new ChildOrderCouponQuery 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 order_id column
Filter the query on the code column
Filter the query on the type column
Filter the query on the amount column
Filter the query on the title column
Filter the query on the short_description column
Filter the query on the description column
Filter the query on the start_date column
Filter the query on the expiration_date column
Filter the query on the is_cumulative column
Filter the query on the isremovingpostage column
Filter the query on the isavailableonspecialoffers column
Filter the query on the serialized_conditions column
Filter the query on the percustomerusage_count 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\Order object
Adds a JOIN clause to the query using the Order relation
Use the Order relation Order object
Filter the query by a related \Thelia\Model\OrderCouponCountry object
Adds a JOIN clause to the query using the OrderCouponCountry relation
Use the OrderCouponCountry relation OrderCouponCountry object
Filter the query by a related \Thelia\Model\OrderCouponModule object
Adds a JOIN clause to the query using the OrderCouponModule relation
Use the OrderCouponModule relation OrderCouponModule object
Filter the query by a related Country object using the ordercouponcountry table as cross reference
Filter the query by a related Module object using the ordercouponmodule table as cross reference
Deletes all rows from the order_coupon table.
Performs a DELETE on the database, given a ChildOrderCoupon or Criteria object OR a primary key value.
Filter by the latest updated
Filter by the latest created
Order by update date desc
Order by update date asc
Order by create date desc
Order by create date asc
Order by the id column
Order by the order_id column
Order by the code column
Order by the type column
Order by the amount column
Order by the title column
Order by the short_description column
Order by the description column
Order by the start_date column
Order by the expiration_date column
Order by the is_cumulative column
Order by the isremovingpostage column
Order by the isavailableonspecialoffers column
Order by the serialized_conditions column
Order by the percustomerusage_count column
Order by the created_at column
Order by the updated_at column
Group by the id column
Group by the order_id column
Group by the code column
Group by the type column
Group by the amount column
Group by the title column
Group by the short_description column
Group by the description column
Group by the start_date column
Group by the expiration_date column
Group by the is_cumulative column
Group by the isremovingpostage column
Group by the isavailableonspecialoffers column
Group by the serialized_conditions column
Group by the percustomerusage_count 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 Order relation
Adds a RIGHT JOIN clause to the query using the Order relation
Adds a INNER JOIN clause to the query using the Order relation
Adds a LEFT JOIN clause to the query using the OrderCouponCountry relation
Adds a RIGHT JOIN clause to the query using the OrderCouponCountry relation
Adds a INNER JOIN clause to the query using the OrderCouponCountry relation
Adds a LEFT JOIN clause to the query using the OrderCouponModule relation
Adds a RIGHT JOIN clause to the query using the OrderCouponModule relation
Adds a INNER JOIN clause to the query using the OrderCouponModule relation
Return the first ChildOrderCoupon matching the query
Return the first ChildOrderCoupon matching the query, or a new ChildOrderCoupon object populated from the query conditions when no match is found
Return the first ChildOrderCoupon filtered by the id column
Return the first ChildOrderCoupon filtered by the order_id column
Return the first ChildOrderCoupon filtered by the code column
Return the first ChildOrderCoupon filtered by the type column
Return the first ChildOrderCoupon filtered by the amount column
Return the first ChildOrderCoupon filtered by the title column
Return the first ChildOrderCoupon filtered by the short_description column
Return the first ChildOrderCoupon filtered by the description column
Return the first ChildOrderCoupon filtered by the start_date column
Return the first ChildOrderCoupon filtered by the expiration_date column
Return the first ChildOrderCoupon filtered by the is_cumulative column
Return the first ChildOrderCoupon filtered by the isremovingpostage column
Return the first ChildOrderCoupon filtered by the isavailableonspecialoffers column
Return the first ChildOrderCoupon filtered by the serialized_conditions column
Return the first ChildOrderCoupon filtered by the percustomerusage_count column
Return the first ChildOrderCoupon filtered by the created_at column
Return the first ChildOrderCoupon filtered by the updated_at column
Return ChildOrderCoupon objects filtered by the id column
Return ChildOrderCoupon objects filtered by the order_id column
Return ChildOrderCoupon objects filtered by the code column
Return ChildOrderCoupon objects filtered by the type column
Return ChildOrderCoupon objects filtered by the amount column
Return ChildOrderCoupon objects filtered by the title column
Return ChildOrderCoupon objects filtered by the short_description column
Return ChildOrderCoupon objects filtered by the description column
Return ChildOrderCoupon objects filtered by the start_date column
Return ChildOrderCoupon objects filtered by the expiration_date column
Return ChildOrderCoupon objects filtered by the is_cumulative column
Return ChildOrderCoupon objects filtered by the isremovingpostage column
Return ChildOrderCoupon objects filtered by the isavailableonspecialoffers column
Return ChildOrderCoupon objects filtered by the serialized_conditions column
Return ChildOrderCoupon objects filtered by the percustomerusage_count column
Return ChildOrderCoupon objects filtered by the created_at column
Return ChildOrderCoupon objects filtered by the updated_at column
Details
at line 126
__construct(
string $dbName = 'thelia',
string $modelName = '\\Thelia\\Model\\OrderCoupon',
string $modelAlias = null)
Initializes internal state of \Thelia\Model\Base\OrderCouponQuery object.
at line 139
static
OrderCouponQuery
create(
string $modelAlias = null,
Criteria $criteria = null)
Returns a new ChildOrderCouponQuery object.
at line 169
OrderCoupon|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);
at line 251
ObjectCollection|array|mixed
findPks(
array $keys,
ConnectionInterface $con = null)
Find objects by primary key
$objs = $c->findPks(array(12, 56, 832), $con);
at line 272
OrderCouponQuery
filterByPrimaryKey(
mixed $key)
Filter the query by primary key
at line 285
OrderCouponQuery
filterByPrimaryKeys(
array $keys)
Filter the query by a list of primary keys
at line 309
OrderCouponQuery
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
at line 352
OrderCouponQuery
filterByOrderId(
mixed $orderId = null,
string $comparison = null)
Filter the query on the order_id column
Example usage:
$query->filterByOrderId(1234); // WHERE orderid = 1234
$query->filterByOrderId(array(12, 34)); // WHERE orderid IN (12, 34)
$query->filterByOrderId(array('min' => 12)); // WHERE order_id > 12
at line 390
OrderCouponQuery
filterByCode(
string $code = null,
string $comparison = null)
Filter the query on the code column
Example usage:
$query->filterByCode('fooValue'); // WHERE code = 'fooValue'
$query->filterByCode('%fooValue%'); // WHERE code LIKE '%fooValue%'
at line 419
OrderCouponQuery
filterByType(
string $type = null,
string $comparison = null)
Filter the query on the type column
Example usage:
$query->filterByType('fooValue'); // WHERE type = 'fooValue'
$query->filterByType('%fooValue%'); // WHERE type LIKE '%fooValue%'
at line 451
OrderCouponQuery
filterByAmount(
mixed $amount = null,
string $comparison = null)
Filter the query on the amount column
Example usage:
$query->filterByAmount(1234); // WHERE amount = 1234
$query->filterByAmount(array(12, 34)); // WHERE amount IN (12, 34)
$query->filterByAmount(array('min' => 12)); // WHERE amount > 12
at line 489
OrderCouponQuery
filterByTitle(
string $title = null,
string $comparison = null)
Filter the query on the title column
Example usage:
$query->filterByTitle('fooValue'); // WHERE title = 'fooValue'
$query->filterByTitle('%fooValue%'); // WHERE title LIKE '%fooValue%'
at line 518
OrderCouponQuery
filterByShortDescription(
string $shortDescription = null,
string $comparison = null)
Filter the query on the short_description column
Example usage:
$query->filterByShortDescription('fooValue'); // WHERE shortdescription = 'fooValue'
$query->filterByShortDescription('%fooValue%'); // WHERE shortdescription LIKE '%fooValue%'
at line 547
OrderCouponQuery
filterByDescription(
string $description = null,
string $comparison = null)
Filter the query on the description column
Example usage:
$query->filterByDescription('fooValue'); // WHERE description = 'fooValue'
$query->filterByDescription('%fooValue%'); // WHERE description LIKE '%fooValue%'
at line 581
OrderCouponQuery
filterByStartDate(
mixed $startDate = null,
string $comparison = null)
Filter the query on the start_date column
Example usage:
$query->filterByStartDate('2011-03-14'); // WHERE startdate = '2011-03-14'
$query->filterByStartDate('now'); // WHERE startdate = '2011-03-14'
$query->filterByStartDate(array('max' => 'yesterday')); // WHERE start_date > '2011-03-13'
at line 624
OrderCouponQuery
filterByExpirationDate(
mixed $expirationDate = null,
string $comparison = null)
Filter the query on the expiration_date column
Example usage:
$query->filterByExpirationDate('2011-03-14'); // WHERE expirationdate = '2011-03-14'
$query->filterByExpirationDate('now'); // WHERE expirationdate = '2011-03-14'
$query->filterByExpirationDate(array('max' => 'yesterday')); // WHERE expiration_date > '2011-03-13'
at line 665
OrderCouponQuery
filterByIsCumulative(
boolean|string $isCumulative = null,
string $comparison = null)
Filter the query on the is_cumulative column
Example usage:
$query->filterByIsCumulative(true); // WHERE iscumulative = true
$query->filterByIsCumulative('yes'); // WHERE iscumulative = true
at line 692
OrderCouponQuery
filterByIsRemovingPostage(
boolean|string $isRemovingPostage = null,
string $comparison = null)
Filter the query on the isremovingpostage column
Example usage:
$query->filterByIsRemovingPostage(true); // WHERE isremovingpostage = true
$query->filterByIsRemovingPostage('yes'); // WHERE isremovingpostage = true
at line 719
OrderCouponQuery
filterByIsAvailableOnSpecialOffers(
boolean|string $isAvailableOnSpecialOffers = null,
string $comparison = null)
Filter the query on the isavailableonspecialoffers column
Example usage:
$query->filterByIsAvailableOnSpecialOffers(true); // WHERE isavailableonspecialoffers = true
$query->filterByIsAvailableOnSpecialOffers('yes'); // WHERE isavailableonspecialoffers = true
at line 743
OrderCouponQuery
filterBySerializedConditions(
string $serializedConditions = null,
string $comparison = null)
Filter the query on the serialized_conditions column
Example usage:
$query->filterBySerializedConditions('fooValue'); // WHERE serializedconditions = 'fooValue'
$query->filterBySerializedConditions('%fooValue%'); // WHERE serializedconditions LIKE '%fooValue%'
at line 775
OrderCouponQuery
filterByPerCustomerUsageCount(
boolean|string $perCustomerUsageCount = null,
string $comparison = null)
Filter the query on the percustomerusage_count column
Example usage:
$query->filterByPerCustomerUsageCount(true); // WHERE percustomerusagecount = true
$query->filterByPerCustomerUsageCount('yes'); // WHERE percustomerusagecount = true
at line 804
OrderCouponQuery
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'
at line 847
OrderCouponQuery
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'
at line 878
OrderCouponQuery
filterByOrder(
Order|ObjectCollection $order,
string $comparison = null)
Filter the query by a related \Thelia\Model\Order object
at line 903
OrderCouponQuery
joinOrder(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the Order relation
at line 938
OrderQuery
useOrderQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the Order relation Order object
at line 953
OrderCouponQuery
filterByOrderCouponCountry(
OrderCouponCountry|ObjectCollection $orderCouponCountry,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderCouponCountry object
at line 976
OrderCouponQuery
joinOrderCouponCountry(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderCouponCountry relation
at line 1011
OrderCouponCountryQuery
useOrderCouponCountryQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderCouponCountry relation OrderCouponCountry object
at line 1026
OrderCouponQuery
filterByOrderCouponModule(
OrderCouponModule|ObjectCollection $orderCouponModule,
string $comparison = null)
Filter the query by a related \Thelia\Model\OrderCouponModule object
at line 1049
OrderCouponQuery
joinOrderCouponModule(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Adds a JOIN clause to the query using the OrderCouponModule relation
at line 1084
OrderCouponModuleQuery
useOrderCouponModuleQuery(
string $relationAlias = null,
string $joinType = Criteria::INNER_JOIN)
Use the OrderCouponModule relation OrderCouponModule object
at line 1100
OrderCouponQuery
filterByCountry(
Country $country,
string $comparison = Criteria::EQUAL)
Filter the query by a related Country object using the ordercouponcountry table as cross reference
at line 1117
OrderCouponQuery
filterByModule(
Module $module,
string $comparison = Criteria::EQUAL)
Filter the query by a related Module object using the ordercouponmodule table as cross reference
at line 1132
OrderCouponQuery
prune(
OrderCoupon $orderCoupon = null)
Exclude object from result
at line 1147
int
doDeleteAll(
ConnectionInterface $con = null)
Deletes all rows from the order_coupon table.
at line 1184
int
delete(
ConnectionInterface $con = null)
Performs a DELETE on the database, given a ChildOrderCoupon or Criteria object OR a primary key value.
at line 1225
OrderCouponQuery
recentlyUpdated(
int $nbDays = 7)
Filter by the latest updated
at line 1237
OrderCouponQuery
recentlyCreated(
int $nbDays = 7)
Filter by the latest created
at line 1247
OrderCouponQuery
lastUpdatedFirst()
Order by update date desc
at line 1257
OrderCouponQuery
firstUpdatedFirst()
Order by update date asc
at line 1267
OrderCouponQuery
lastCreatedFirst()
Order by create date desc
at line 1277
OrderCouponQuery
firstCreatedFirst()
Order by create date asc
at line 116
ChildOrderCouponQuery
orderById($order = Criteria::ASC)
Order by the id column
at line 116
ChildOrderCouponQuery
orderByOrderId($order = Criteria::ASC)
Order by the order_id column
at line 116
ChildOrderCouponQuery
orderByCode($order = Criteria::ASC)
Order by the code column
at line 116
ChildOrderCouponQuery
orderByType($order = Criteria::ASC)
Order by the type column
at line 116
ChildOrderCouponQuery
orderByAmount($order = Criteria::ASC)
Order by the amount column
at line 116
ChildOrderCouponQuery
orderByTitle($order = Criteria::ASC)
Order by the title column
at line 116
ChildOrderCouponQuery
orderByShortDescription($order = Criteria::ASC)
Order by the short_description column
at line 116
ChildOrderCouponQuery
orderByDescription($order = Criteria::ASC)
Order by the description column
at line 116
ChildOrderCouponQuery
orderByStartDate($order = Criteria::ASC)
Order by the start_date column
at line 116
ChildOrderCouponQuery
orderByExpirationDate($order = Criteria::ASC)
Order by the expiration_date column
at line 116
ChildOrderCouponQuery
orderByIsCumulative($order = Criteria::ASC)
Order by the is_cumulative column
at line 116
ChildOrderCouponQuery
orderByIsRemovingPostage($order = Criteria::ASC)
Order by the isremovingpostage column
at line 116
ChildOrderCouponQuery
orderByIsAvailableOnSpecialOffers($order = Criteria::ASC)
Order by the isavailableonspecialoffers column
at line 116
ChildOrderCouponQuery
orderBySerializedConditions($order = Criteria::ASC)
Order by the serialized_conditions column
at line 116
ChildOrderCouponQuery
orderByPerCustomerUsageCount($order = Criteria::ASC)
Order by the percustomerusage_count column
at line 116
ChildOrderCouponQuery
orderByCreatedAt($order = Criteria::ASC)
Order by the created_at column
at line 116
ChildOrderCouponQuery
orderByUpdatedAt($order = Criteria::ASC)
Order by the updated_at column
at line 116
ChildOrderCouponQuery
groupById()
Group by the id column
at line 116
ChildOrderCouponQuery
groupByOrderId()
Group by the order_id column
at line 116
ChildOrderCouponQuery
groupByCode()
Group by the code column
at line 116
ChildOrderCouponQuery
groupByType()
Group by the type column
at line 116
ChildOrderCouponQuery
groupByAmount()
Group by the amount column
at line 116
ChildOrderCouponQuery
groupByTitle()
Group by the title column
at line 116
ChildOrderCouponQuery
groupByShortDescription()
Group by the short_description column
at line 116
ChildOrderCouponQuery
groupByDescription()
Group by the description column
at line 116
ChildOrderCouponQuery
groupByStartDate()
Group by the start_date column
at line 116
ChildOrderCouponQuery
groupByExpirationDate()
Group by the expiration_date column
at line 116
ChildOrderCouponQuery
groupByIsCumulative()
Group by the is_cumulative column
at line 116
ChildOrderCouponQuery
groupByIsRemovingPostage()
Group by the isremovingpostage column
at line 116
ChildOrderCouponQuery
groupByIsAvailableOnSpecialOffers()
Group by the isavailableonspecialoffers column
at line 116
ChildOrderCouponQuery
groupBySerializedConditions()
Group by the serialized_conditions column
at line 116
ChildOrderCouponQuery
groupByPerCustomerUsageCount()
Group by the percustomerusage_count column
at line 116
ChildOrderCouponQuery
groupByCreatedAt()
Group by the created_at column
at line 116
ChildOrderCouponQuery
groupByUpdatedAt()
Group by the updated_at column
at line 116
ChildOrderCouponQuery
leftJoin($relation)
Adds a LEFT JOIN clause to the query
at line 116
ChildOrderCouponQuery
rightJoin($relation)
Adds a RIGHT JOIN clause to the query
at line 116
ChildOrderCouponQuery
innerJoin($relation)
Adds a INNER JOIN clause to the query
at line 116
ChildOrderCouponQuery
leftJoinOrder($relationAlias = null)
Adds a LEFT JOIN clause to the query using the Order relation
at line 116
ChildOrderCouponQuery
rightJoinOrder($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the Order relation
at line 116
ChildOrderCouponQuery
innerJoinOrder($relationAlias = null)
Adds a INNER JOIN clause to the query using the Order relation
at line 116
ChildOrderCouponQuery
leftJoinOrderCouponCountry($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderCouponCountry relation
at line 116
ChildOrderCouponQuery
rightJoinOrderCouponCountry($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderCouponCountry relation
at line 116
ChildOrderCouponQuery
innerJoinOrderCouponCountry($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderCouponCountry relation
at line 116
ChildOrderCouponQuery
leftJoinOrderCouponModule($relationAlias = null)
Adds a LEFT JOIN clause to the query using the OrderCouponModule relation
at line 116
ChildOrderCouponQuery
rightJoinOrderCouponModule($relationAlias = null)
Adds a RIGHT JOIN clause to the query using the OrderCouponModule relation
at line 116
ChildOrderCouponQuery
innerJoinOrderCouponModule($relationAlias = null)
Adds a INNER JOIN clause to the query using the OrderCouponModule relation
at line 116
ChildOrderCoupon
findOne(
ConnectionInterface $con = null)
Return the first ChildOrderCoupon matching the query
at line 116
ChildOrderCoupon
findOneOrCreate(
ConnectionInterface $con = null)
Return the first ChildOrderCoupon matching the query, or a new ChildOrderCoupon object populated from the query conditions when no match is found
at line 116
ChildOrderCoupon
findOneById(
int $id)
Return the first ChildOrderCoupon filtered by the id column
at line 116
ChildOrderCoupon
findOneByOrderId(
int $order_id)
Return the first ChildOrderCoupon filtered by the order_id column
at line 116
ChildOrderCoupon
findOneByCode(
string $code)
Return the first ChildOrderCoupon filtered by the code column
at line 116
ChildOrderCoupon
findOneByType(
string $type)
Return the first ChildOrderCoupon filtered by the type column
at line 116
ChildOrderCoupon
findOneByAmount(
string $amount)
Return the first ChildOrderCoupon filtered by the amount column
at line 116
ChildOrderCoupon
findOneByTitle(
string $title)
Return the first ChildOrderCoupon filtered by the title column
at line 116
ChildOrderCoupon
findOneByShortDescription(
string $short_description)
Return the first ChildOrderCoupon filtered by the short_description column
at line 116
ChildOrderCoupon
findOneByDescription(
string $description)
Return the first ChildOrderCoupon filtered by the description column
at line 116
ChildOrderCoupon
findOneByStartDate(
string $start_date)
Return the first ChildOrderCoupon filtered by the start_date column
at line 116
ChildOrderCoupon
findOneByExpirationDate(
string $expiration_date)
Return the first ChildOrderCoupon filtered by the expiration_date column
at line 116
ChildOrderCoupon
findOneByIsCumulative(
boolean $is_cumulative)
Return the first ChildOrderCoupon filtered by the is_cumulative column
at line 116
ChildOrderCoupon
findOneByIsRemovingPostage(
boolean $is_removing_postage)
Return the first ChildOrderCoupon filtered by the isremovingpostage column
at line 116
ChildOrderCoupon
findOneByIsAvailableOnSpecialOffers(
boolean $is_available_on_special_offers)
Return the first ChildOrderCoupon filtered by the isavailableonspecialoffers column
at line 116
ChildOrderCoupon
findOneBySerializedConditions(
string $serialized_conditions)
Return the first ChildOrderCoupon filtered by the serialized_conditions column
at line 116
ChildOrderCoupon
findOneByPerCustomerUsageCount(
boolean $per_customer_usage_count)
Return the first ChildOrderCoupon filtered by the percustomerusage_count column
at line 116
ChildOrderCoupon
findOneByCreatedAt(
string $created_at)
Return the first ChildOrderCoupon filtered by the created_at column
at line 116
ChildOrderCoupon
findOneByUpdatedAt(
string $updated_at)
Return the first ChildOrderCoupon filtered by the updated_at column
at line 116
array
findById(
int $id)
Return ChildOrderCoupon objects filtered by the id column
at line 116
array
findByOrderId(
int $order_id)
Return ChildOrderCoupon objects filtered by the order_id column
at line 116
array
findByCode(
string $code)
Return ChildOrderCoupon objects filtered by the code column
at line 116
array
findByType(
string $type)
Return ChildOrderCoupon objects filtered by the type column
at line 116
array
findByAmount(
string $amount)
Return ChildOrderCoupon objects filtered by the amount column
at line 116
array
findByTitle(
string $title)
Return ChildOrderCoupon objects filtered by the title column
at line 116
array
findByShortDescription(
string $short_description)
Return ChildOrderCoupon objects filtered by the short_description column
at line 116
array
findByDescription(
string $description)
Return ChildOrderCoupon objects filtered by the description column
at line 116
array
findByStartDate(
string $start_date)
Return ChildOrderCoupon objects filtered by the start_date column
at line 116
array
findByExpirationDate(
string $expiration_date)
Return ChildOrderCoupon objects filtered by the expiration_date column
at line 116
array
findByIsCumulative(
boolean $is_cumulative)
Return ChildOrderCoupon objects filtered by the is_cumulative column
at line 116
array
findByIsRemovingPostage(
boolean $is_removing_postage)
Return ChildOrderCoupon objects filtered by the isremovingpostage column
at line 116
array
findByIsAvailableOnSpecialOffers(
boolean $is_available_on_special_offers)
Return ChildOrderCoupon objects filtered by the isavailableonspecialoffers column
at line 116
array
findBySerializedConditions(
string $serialized_conditions)
Return ChildOrderCoupon objects filtered by the serialized_conditions column
at line 116
array
findByPerCustomerUsageCount(
boolean $per_customer_usage_count)
Return ChildOrderCoupon objects filtered by the percustomerusage_count column
at line 116
array
findByCreatedAt(
string $created_at)
Return ChildOrderCoupon objects filtered by the created_at column
at line 116
array
findByUpdatedAt(
string $updated_at)
Return ChildOrderCoupon objects filtered by the updated_at column