order tables
This commit is contained in:
@@ -30,6 +30,7 @@ use Thelia\Core\Event\OrderEvent;
|
|||||||
use Thelia\Core\Event\TheliaEvents;
|
use Thelia\Core\Event\TheliaEvents;
|
||||||
use Thelia\Model\Base\AddressQuery;
|
use Thelia\Model\Base\AddressQuery;
|
||||||
use Thelia\Model\ModuleQuery;
|
use Thelia\Model\ModuleQuery;
|
||||||
|
use Thelia\Model\OrderProduct;
|
||||||
use Thelia\Model\OrderStatus;
|
use Thelia\Model\OrderStatus;
|
||||||
use Thelia\Model\Map\OrderTableMap;
|
use Thelia\Model\Map\OrderTableMap;
|
||||||
use Thelia\Model\OrderAddress;
|
use Thelia\Model\OrderAddress;
|
||||||
@@ -108,14 +109,17 @@ class Order extends BaseAction implements EventSubscriberInterface
|
|||||||
|
|
||||||
/* use a copy to avoid errored reccord in session */
|
/* use a copy to avoid errored reccord in session */
|
||||||
$placedOrder = $sessionOrder->copy();
|
$placedOrder = $sessionOrder->copy();
|
||||||
|
$placedOrder->setDispatcher($this->getDispatcher());
|
||||||
|
|
||||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||||
$currency = $this->getSession()->getCurrency();
|
$currency = $this->getSession()->getCurrency();
|
||||||
$lang = $this->getSession()->getLang();
|
$lang = $this->getSession()->getLang();
|
||||||
$deliveryAddress = AddressQuery::create()->findPk($sessionOrder->chosenDeliveryAddress);
|
$deliveryAddress = AddressQuery::create()->findPk($sessionOrder->chosenDeliveryAddress);
|
||||||
$invoiceAddress = AddressQuery::create()->findPk($sessionOrder->chosenInvoiceAddress);
|
$invoiceAddress = AddressQuery::create()->findPk($sessionOrder->chosenInvoiceAddress);
|
||||||
|
$cart = $this->getSession()->getCart();
|
||||||
|
$cartItems = $cart->getCartItems();
|
||||||
|
|
||||||
$paymentModule = ModuleQuery::findPk($placedOrder->getPaymentModuleId());
|
$paymentModule = ModuleQuery::create()->findPk($placedOrder->getPaymentModuleId());
|
||||||
|
|
||||||
/* fulfill order */
|
/* fulfill order */
|
||||||
$placedOrder->setCustomerId($customer->getId());
|
$placedOrder->setCustomerId($customer->getId());
|
||||||
@@ -163,7 +167,16 @@ class Order extends BaseAction implements EventSubscriberInterface
|
|||||||
|
|
||||||
$placedOrder->save($con);
|
$placedOrder->save($con);
|
||||||
|
|
||||||
/* fulfill order_products and decrease stock // @todo dispatch event */
|
/* fulfill order_products and decrease stock // @todo + dispatch event */
|
||||||
|
|
||||||
|
foreach($cartItems as $cartItem) {
|
||||||
|
$orderProduct = new OrderProduct();
|
||||||
|
$orderProduct
|
||||||
|
->setOrderId($placedOrder->getId())
|
||||||
|
;
|
||||||
|
|
||||||
|
$in = true;
|
||||||
|
}
|
||||||
|
|
||||||
/* discount @todo */
|
/* discount @todo */
|
||||||
|
|
||||||
@@ -171,14 +184,15 @@ class Order extends BaseAction implements EventSubscriberInterface
|
|||||||
|
|
||||||
/* T1style : dispatch mail event ? */
|
/* T1style : dispatch mail event ? */
|
||||||
|
|
||||||
/* clear session ? */
|
/* clear session @todo : remove comment below + test */
|
||||||
|
//$sessionOrder = new \Thelia\Model\Order();
|
||||||
|
|
||||||
/* call pay method */
|
/* call pay method */
|
||||||
$paymentModuleReflection = new \ReflectionClass($paymentModule->getFullNamespace());
|
$paymentModuleReflection = new \ReflectionClass($paymentModule->getFullNamespace());
|
||||||
$paymentModuleInstance = $paymentModuleReflection->newInstance();
|
$paymentModuleInstance = $paymentModuleReflection->newInstance();
|
||||||
|
|
||||||
$paymentModuleInstance->setRequest($this->request);
|
$paymentModuleInstance->setRequest($this->getRequest());
|
||||||
$paymentModuleInstance->setDispatcher($this->dispatcher);
|
$paymentModuleInstance->setDispatcher($this->getDispatcher());
|
||||||
|
|
||||||
$paymentModuleInstance->pay();
|
$paymentModuleInstance->pay();
|
||||||
}
|
}
|
||||||
@@ -188,14 +202,13 @@ class Order extends BaseAction implements EventSubscriberInterface
|
|||||||
*/
|
*/
|
||||||
public function setReference(OrderEvent $event)
|
public function setReference(OrderEvent $event)
|
||||||
{
|
{
|
||||||
$x = true;
|
$event->getOrder()->setRef($this->generateRef());
|
||||||
|
|
||||||
$this->setRef($this->generateRef());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function generateRef()
|
public function generateRef()
|
||||||
{
|
{
|
||||||
return sprintf('O', uniqid('', true), $this->getId());
|
/* order addresses are unique */
|
||||||
|
return uniqid('ORD', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
897
core/lib/Thelia/Model/Base/OrderAttributeCombinationQuery.php
Normal file
897
core/lib/Thelia/Model/Base/OrderAttributeCombinationQuery.php
Normal file
@@ -0,0 +1,897 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Thelia\Model\Base;
|
||||||
|
|
||||||
|
use \Exception;
|
||||||
|
use \PDO;
|
||||||
|
use Propel\Runtime\Propel;
|
||||||
|
use Propel\Runtime\ActiveQuery\Criteria;
|
||||||
|
use Propel\Runtime\ActiveQuery\ModelCriteria;
|
||||||
|
use Propel\Runtime\ActiveQuery\ModelJoin;
|
||||||
|
use Propel\Runtime\Collection\Collection;
|
||||||
|
use Propel\Runtime\Collection\ObjectCollection;
|
||||||
|
use Propel\Runtime\Connection\ConnectionInterface;
|
||||||
|
use Propel\Runtime\Exception\PropelException;
|
||||||
|
use Thelia\Model\OrderAttributeCombination as ChildOrderAttributeCombination;
|
||||||
|
use Thelia\Model\OrderAttributeCombinationQuery as ChildOrderAttributeCombinationQuery;
|
||||||
|
use Thelia\Model\Map\OrderAttributeCombinationTableMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Base class that represents a query for the 'order_attribute_combination' table.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderById($order = Criteria::ASC) Order by the id column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByOrderProductId($order = Criteria::ASC) Order by the order_product_id column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeTitle($order = Criteria::ASC) Order by the attribute_title column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeChapo($order = Criteria::ASC) Order by the attribute_chapo column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeDescription($order = Criteria::ASC) Order by the attribute_description column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributePostscriptumn($order = Criteria::ASC) Order by the attribute_postscriptumn column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeAvTitle($order = Criteria::ASC) Order by the attribute_av_title column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeAvChapo($order = Criteria::ASC) Order by the attribute_av_chapo column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeAvDescription($order = Criteria::ASC) Order by the attribute_av_description column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByAttributeAvPostscriptum($order = Criteria::ASC) Order by the attribute_av_postscriptum column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByCreatedAt($order = Criteria::ASC) Order by the created_at column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery orderByUpdatedAt($order = Criteria::ASC) Order by the updated_at column
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupById() Group by the id column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByOrderProductId() Group by the order_product_id column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeTitle() Group by the attribute_title column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeChapo() Group by the attribute_chapo column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeDescription() Group by the attribute_description column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributePostscriptumn() Group by the attribute_postscriptumn column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeAvTitle() Group by the attribute_av_title column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeAvChapo() Group by the attribute_av_chapo column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeAvDescription() Group by the attribute_av_description column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByAttributeAvPostscriptum() Group by the attribute_av_postscriptum column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByCreatedAt() Group by the created_at column
|
||||||
|
* @method ChildOrderAttributeCombinationQuery groupByUpdatedAt() Group by the updated_at column
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombinationQuery leftJoin($relation) Adds a LEFT JOIN clause to the query
|
||||||
|
* @method ChildOrderAttributeCombinationQuery rightJoin($relation) Adds a RIGHT JOIN clause to the query
|
||||||
|
* @method ChildOrderAttributeCombinationQuery innerJoin($relation) Adds a INNER JOIN clause to the query
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombinationQuery leftJoinOrderProduct($relationAlias = null) Adds a LEFT JOIN clause to the query using the OrderProduct relation
|
||||||
|
* @method ChildOrderAttributeCombinationQuery rightJoinOrderProduct($relationAlias = null) Adds a RIGHT JOIN clause to the query using the OrderProduct relation
|
||||||
|
* @method ChildOrderAttributeCombinationQuery innerJoinOrderProduct($relationAlias = null) Adds a INNER JOIN clause to the query using the OrderProduct relation
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombination findOne(ConnectionInterface $con = null) Return the first ChildOrderAttributeCombination matching the query
|
||||||
|
* @method ChildOrderAttributeCombination findOneOrCreate(ConnectionInterface $con = null) Return the first ChildOrderAttributeCombination matching the query, or a new ChildOrderAttributeCombination object populated from the query conditions when no match is found
|
||||||
|
*
|
||||||
|
* @method ChildOrderAttributeCombination findOneById(int $id) Return the first ChildOrderAttributeCombination filtered by the id column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByOrderProductId(int $order_product_id) Return the first ChildOrderAttributeCombination filtered by the order_product_id column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeTitle(string $attribute_title) Return the first ChildOrderAttributeCombination filtered by the attribute_title column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeChapo(string $attribute_chapo) Return the first ChildOrderAttributeCombination filtered by the attribute_chapo column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeDescription(string $attribute_description) Return the first ChildOrderAttributeCombination filtered by the attribute_description column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributePostscriptumn(string $attribute_postscriptumn) Return the first ChildOrderAttributeCombination filtered by the attribute_postscriptumn column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeAvTitle(string $attribute_av_title) Return the first ChildOrderAttributeCombination filtered by the attribute_av_title column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeAvChapo(string $attribute_av_chapo) Return the first ChildOrderAttributeCombination filtered by the attribute_av_chapo column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeAvDescription(string $attribute_av_description) Return the first ChildOrderAttributeCombination filtered by the attribute_av_description column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByAttributeAvPostscriptum(string $attribute_av_postscriptum) Return the first ChildOrderAttributeCombination filtered by the attribute_av_postscriptum column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByCreatedAt(string $created_at) Return the first ChildOrderAttributeCombination filtered by the created_at column
|
||||||
|
* @method ChildOrderAttributeCombination findOneByUpdatedAt(string $updated_at) Return the first ChildOrderAttributeCombination filtered by the updated_at column
|
||||||
|
*
|
||||||
|
* @method array findById(int $id) Return ChildOrderAttributeCombination objects filtered by the id column
|
||||||
|
* @method array findByOrderProductId(int $order_product_id) Return ChildOrderAttributeCombination objects filtered by the order_product_id column
|
||||||
|
* @method array findByAttributeTitle(string $attribute_title) Return ChildOrderAttributeCombination objects filtered by the attribute_title column
|
||||||
|
* @method array findByAttributeChapo(string $attribute_chapo) Return ChildOrderAttributeCombination objects filtered by the attribute_chapo column
|
||||||
|
* @method array findByAttributeDescription(string $attribute_description) Return ChildOrderAttributeCombination objects filtered by the attribute_description column
|
||||||
|
* @method array findByAttributePostscriptumn(string $attribute_postscriptumn) Return ChildOrderAttributeCombination objects filtered by the attribute_postscriptumn column
|
||||||
|
* @method array findByAttributeAvTitle(string $attribute_av_title) Return ChildOrderAttributeCombination objects filtered by the attribute_av_title column
|
||||||
|
* @method array findByAttributeAvChapo(string $attribute_av_chapo) Return ChildOrderAttributeCombination objects filtered by the attribute_av_chapo column
|
||||||
|
* @method array findByAttributeAvDescription(string $attribute_av_description) Return ChildOrderAttributeCombination objects filtered by the attribute_av_description column
|
||||||
|
* @method array findByAttributeAvPostscriptum(string $attribute_av_postscriptum) Return ChildOrderAttributeCombination objects filtered by the attribute_av_postscriptum column
|
||||||
|
* @method array findByCreatedAt(string $created_at) Return ChildOrderAttributeCombination objects filtered by the created_at column
|
||||||
|
* @method array findByUpdatedAt(string $updated_at) Return ChildOrderAttributeCombination objects filtered by the updated_at column
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
abstract class OrderAttributeCombinationQuery extends ModelCriteria
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes internal state of \Thelia\Model\Base\OrderAttributeCombinationQuery object.
|
||||||
|
*
|
||||||
|
* @param string $dbName The database name
|
||||||
|
* @param string $modelName The phpName of a model, e.g. 'Book'
|
||||||
|
* @param string $modelAlias The alias for the model in this query, e.g. 'b'
|
||||||
|
*/
|
||||||
|
public function __construct($dbName = 'thelia', $modelName = '\\Thelia\\Model\\OrderAttributeCombination', $modelAlias = null)
|
||||||
|
{
|
||||||
|
parent::__construct($dbName, $modelName, $modelAlias);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a new ChildOrderAttributeCombinationQuery object.
|
||||||
|
*
|
||||||
|
* @param string $modelAlias The alias of a model in the query
|
||||||
|
* @param Criteria $criteria Optional Criteria to build the query from
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery
|
||||||
|
*/
|
||||||
|
public static function create($modelAlias = null, $criteria = null)
|
||||||
|
{
|
||||||
|
if ($criteria instanceof \Thelia\Model\OrderAttributeCombinationQuery) {
|
||||||
|
return $criteria;
|
||||||
|
}
|
||||||
|
$query = new \Thelia\Model\OrderAttributeCombinationQuery();
|
||||||
|
if (null !== $modelAlias) {
|
||||||
|
$query->setModelAlias($modelAlias);
|
||||||
|
}
|
||||||
|
if ($criteria instanceof Criteria) {
|
||||||
|
$query->mergeWith($criteria);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* <code>
|
||||||
|
* $obj = $c->findPk(12, $con);
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param mixed $key Primary key to use for the query
|
||||||
|
* @param ConnectionInterface $con an optional connection object
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombination|array|mixed the result, formatted by the current formatter
|
||||||
|
*/
|
||||||
|
public function findPk($key, $con = null)
|
||||||
|
{
|
||||||
|
if ($key === null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
if ((null !== ($obj = OrderAttributeCombinationTableMap::getInstanceFromPool((string) $key))) && !$this->formatter) {
|
||||||
|
// the object is already in the instance pool
|
||||||
|
return $obj;
|
||||||
|
}
|
||||||
|
if ($con === null) {
|
||||||
|
$con = Propel::getServiceContainer()->getReadConnection(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
|
}
|
||||||
|
$this->basePreSelect($con);
|
||||||
|
if ($this->formatter || $this->modelAlias || $this->with || $this->select
|
||||||
|
|| $this->selectColumns || $this->asColumns || $this->selectModifiers
|
||||||
|
|| $this->map || $this->having || $this->joins) {
|
||||||
|
return $this->findPkComplex($key, $con);
|
||||||
|
} else {
|
||||||
|
return $this->findPkSimple($key, $con);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find object by primary key using raw SQL to go fast.
|
||||||
|
* Bypass doSelect() and the object formatter by using generated code.
|
||||||
|
*
|
||||||
|
* @param mixed $key Primary key to use for the query
|
||||||
|
* @param ConnectionInterface $con A connection object
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombination A model object, or null if the key is not found
|
||||||
|
*/
|
||||||
|
protected function findPkSimple($key, $con)
|
||||||
|
{
|
||||||
|
$sql = 'SELECT ID, ORDER_PRODUCT_ID, ATTRIBUTE_TITLE, ATTRIBUTE_CHAPO, ATTRIBUTE_DESCRIPTION, ATTRIBUTE_POSTSCRIPTUMN, ATTRIBUTE_AV_TITLE, ATTRIBUTE_AV_CHAPO, ATTRIBUTE_AV_DESCRIPTION, ATTRIBUTE_AV_POSTSCRIPTUM, CREATED_AT, UPDATED_AT FROM order_attribute_combination WHERE ID = :p0';
|
||||||
|
try {
|
||||||
|
$stmt = $con->prepare($sql);
|
||||||
|
$stmt->bindValue(':p0', $key, PDO::PARAM_INT);
|
||||||
|
$stmt->execute();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
Propel::log($e->getMessage(), Propel::LOG_ERR);
|
||||||
|
throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), 0, $e);
|
||||||
|
}
|
||||||
|
$obj = null;
|
||||||
|
if ($row = $stmt->fetch(\PDO::FETCH_NUM)) {
|
||||||
|
$obj = new ChildOrderAttributeCombination();
|
||||||
|
$obj->hydrate($row);
|
||||||
|
OrderAttributeCombinationTableMap::addInstanceToPool($obj, (string) $key);
|
||||||
|
}
|
||||||
|
$stmt->closeCursor();
|
||||||
|
|
||||||
|
return $obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find object by primary key.
|
||||||
|
*
|
||||||
|
* @param mixed $key Primary key to use for the query
|
||||||
|
* @param ConnectionInterface $con A connection object
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombination|array|mixed the result, formatted by the current formatter
|
||||||
|
*/
|
||||||
|
protected function findPkComplex($key, $con)
|
||||||
|
{
|
||||||
|
// As the query uses a PK condition, no limit(1) is necessary.
|
||||||
|
$criteria = $this->isKeepQuery() ? clone $this : $this;
|
||||||
|
$dataFetcher = $criteria
|
||||||
|
->filterByPrimaryKey($key)
|
||||||
|
->doSelect($con);
|
||||||
|
|
||||||
|
return $criteria->getFormatter()->init($criteria)->formatOne($dataFetcher);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find objects by primary key
|
||||||
|
* <code>
|
||||||
|
* $objs = $c->findPks(array(12, 56, 832), $con);
|
||||||
|
* </code>
|
||||||
|
* @param array $keys Primary keys to use for the query
|
||||||
|
* @param ConnectionInterface $con an optional connection object
|
||||||
|
*
|
||||||
|
* @return ObjectCollection|array|mixed the list of results, formatted by the current formatter
|
||||||
|
*/
|
||||||
|
public function findPks($keys, $con = null)
|
||||||
|
{
|
||||||
|
if (null === $con) {
|
||||||
|
$con = Propel::getServiceContainer()->getReadConnection($this->getDbName());
|
||||||
|
}
|
||||||
|
$this->basePreSelect($con);
|
||||||
|
$criteria = $this->isKeepQuery() ? clone $this : $this;
|
||||||
|
$dataFetcher = $criteria
|
||||||
|
->filterByPrimaryKeys($keys)
|
||||||
|
->doSelect($con);
|
||||||
|
|
||||||
|
return $criteria->getFormatter()->init($criteria)->format($dataFetcher);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query by primary key
|
||||||
|
*
|
||||||
|
* @param mixed $key Primary key to use for the query
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByPrimaryKey($key)
|
||||||
|
{
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $key, Criteria::EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query by a list of primary keys
|
||||||
|
*
|
||||||
|
* @param array $keys The list of primary key to use for the query
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByPrimaryKeys($keys)
|
||||||
|
{
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $keys, Criteria::IN);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the id column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterById(1234); // WHERE id = 1234
|
||||||
|
* $query->filterById(array(12, 34)); // WHERE id IN (12, 34)
|
||||||
|
* $query->filterById(array('min' => 12)); // WHERE id > 12
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param mixed $id The value to use as filter.
|
||||||
|
* Use scalar values for equality.
|
||||||
|
* Use array values for in_array() equivalent.
|
||||||
|
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterById($id = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (is_array($id)) {
|
||||||
|
$useMinMax = false;
|
||||||
|
if (isset($id['min'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $id['min'], Criteria::GREATER_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if (isset($id['max'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $id['max'], Criteria::LESS_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if ($useMinMax) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
if (null === $comparison) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $id, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the order_product_id column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByOrderProductId(1234); // WHERE order_product_id = 1234
|
||||||
|
* $query->filterByOrderProductId(array(12, 34)); // WHERE order_product_id IN (12, 34)
|
||||||
|
* $query->filterByOrderProductId(array('min' => 12)); // WHERE order_product_id > 12
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @see filterByOrderProduct()
|
||||||
|
*
|
||||||
|
* @param mixed $orderProductId The value to use as filter.
|
||||||
|
* Use scalar values for equality.
|
||||||
|
* Use array values for in_array() equivalent.
|
||||||
|
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByOrderProductId($orderProductId = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (is_array($orderProductId)) {
|
||||||
|
$useMinMax = false;
|
||||||
|
if (isset($orderProductId['min'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, $orderProductId['min'], Criteria::GREATER_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if (isset($orderProductId['max'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, $orderProductId['max'], Criteria::LESS_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if ($useMinMax) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
if (null === $comparison) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, $orderProductId, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_title column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeTitle('fooValue'); // WHERE attribute_title = 'fooValue'
|
||||||
|
* $query->filterByAttributeTitle('%fooValue%'); // WHERE attribute_title LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeTitle The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeTitle($attributeTitle = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeTitle)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeTitle)) {
|
||||||
|
$attributeTitle = str_replace('*', '%', $attributeTitle);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_TITLE, $attributeTitle, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_chapo column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeChapo('fooValue'); // WHERE attribute_chapo = 'fooValue'
|
||||||
|
* $query->filterByAttributeChapo('%fooValue%'); // WHERE attribute_chapo LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeChapo The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeChapo($attributeChapo = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeChapo)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeChapo)) {
|
||||||
|
$attributeChapo = str_replace('*', '%', $attributeChapo);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_CHAPO, $attributeChapo, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_description column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeDescription('fooValue'); // WHERE attribute_description = 'fooValue'
|
||||||
|
* $query->filterByAttributeDescription('%fooValue%'); // WHERE attribute_description LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeDescription The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeDescription($attributeDescription = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeDescription)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeDescription)) {
|
||||||
|
$attributeDescription = str_replace('*', '%', $attributeDescription);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_DESCRIPTION, $attributeDescription, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_postscriptumn column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributePostscriptumn('fooValue'); // WHERE attribute_postscriptumn = 'fooValue'
|
||||||
|
* $query->filterByAttributePostscriptumn('%fooValue%'); // WHERE attribute_postscriptumn LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributePostscriptumn The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributePostscriptumn($attributePostscriptumn = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributePostscriptumn)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributePostscriptumn)) {
|
||||||
|
$attributePostscriptumn = str_replace('*', '%', $attributePostscriptumn);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_POSTSCRIPTUMN, $attributePostscriptumn, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_av_title column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeAvTitle('fooValue'); // WHERE attribute_av_title = 'fooValue'
|
||||||
|
* $query->filterByAttributeAvTitle('%fooValue%'); // WHERE attribute_av_title LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeAvTitle The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeAvTitle($attributeAvTitle = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeAvTitle)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeAvTitle)) {
|
||||||
|
$attributeAvTitle = str_replace('*', '%', $attributeAvTitle);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_TITLE, $attributeAvTitle, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_av_chapo column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeAvChapo('fooValue'); // WHERE attribute_av_chapo = 'fooValue'
|
||||||
|
* $query->filterByAttributeAvChapo('%fooValue%'); // WHERE attribute_av_chapo LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeAvChapo The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeAvChapo($attributeAvChapo = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeAvChapo)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeAvChapo)) {
|
||||||
|
$attributeAvChapo = str_replace('*', '%', $attributeAvChapo);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_CHAPO, $attributeAvChapo, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_av_description column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeAvDescription('fooValue'); // WHERE attribute_av_description = 'fooValue'
|
||||||
|
* $query->filterByAttributeAvDescription('%fooValue%'); // WHERE attribute_av_description LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeAvDescription The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeAvDescription($attributeAvDescription = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeAvDescription)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeAvDescription)) {
|
||||||
|
$attributeAvDescription = str_replace('*', '%', $attributeAvDescription);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_DESCRIPTION, $attributeAvDescription, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the attribute_av_postscriptum column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByAttributeAvPostscriptum('fooValue'); // WHERE attribute_av_postscriptum = 'fooValue'
|
||||||
|
* $query->filterByAttributeAvPostscriptum('%fooValue%'); // WHERE attribute_av_postscriptum LIKE '%fooValue%'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param string $attributeAvPostscriptum The value to use as filter.
|
||||||
|
* Accepts wildcards (* and % trigger a LIKE)
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByAttributeAvPostscriptum($attributeAvPostscriptum = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (null === $comparison) {
|
||||||
|
if (is_array($attributeAvPostscriptum)) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
} elseif (preg_match('/[\%\*]/', $attributeAvPostscriptum)) {
|
||||||
|
$attributeAvPostscriptum = str_replace('*', '%', $attributeAvPostscriptum);
|
||||||
|
$comparison = Criteria::LIKE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_POSTSCRIPTUM, $attributeAvPostscriptum, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the created_at column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByCreatedAt('2011-03-14'); // WHERE created_at = '2011-03-14'
|
||||||
|
* $query->filterByCreatedAt('now'); // WHERE created_at = '2011-03-14'
|
||||||
|
* $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param mixed $createdAt The value to use as filter.
|
||||||
|
* Values can be integers (unix timestamps), DateTime objects, or strings.
|
||||||
|
* Empty strings are treated as NULL.
|
||||||
|
* Use scalar values for equality.
|
||||||
|
* Use array values for in_array() equivalent.
|
||||||
|
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByCreatedAt($createdAt = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (is_array($createdAt)) {
|
||||||
|
$useMinMax = false;
|
||||||
|
if (isset($createdAt['min'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::CREATED_AT, $createdAt['min'], Criteria::GREATER_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if (isset($createdAt['max'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::CREATED_AT, $createdAt['max'], Criteria::LESS_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if ($useMinMax) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
if (null === $comparison) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::CREATED_AT, $createdAt, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query on the updated_at column
|
||||||
|
*
|
||||||
|
* Example usage:
|
||||||
|
* <code>
|
||||||
|
* $query->filterByUpdatedAt('2011-03-14'); // WHERE updated_at = '2011-03-14'
|
||||||
|
* $query->filterByUpdatedAt('now'); // WHERE updated_at = '2011-03-14'
|
||||||
|
* $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'
|
||||||
|
* </code>
|
||||||
|
*
|
||||||
|
* @param mixed $updatedAt The value to use as filter.
|
||||||
|
* Values can be integers (unix timestamps), DateTime objects, or strings.
|
||||||
|
* Empty strings are treated as NULL.
|
||||||
|
* Use scalar values for equality.
|
||||||
|
* Use array values for in_array() equivalent.
|
||||||
|
* Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByUpdatedAt($updatedAt = null, $comparison = null)
|
||||||
|
{
|
||||||
|
if (is_array($updatedAt)) {
|
||||||
|
$useMinMax = false;
|
||||||
|
if (isset($updatedAt['min'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::UPDATED_AT, $updatedAt['min'], Criteria::GREATER_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if (isset($updatedAt['max'])) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::UPDATED_AT, $updatedAt['max'], Criteria::LESS_EQUAL);
|
||||||
|
$useMinMax = true;
|
||||||
|
}
|
||||||
|
if ($useMinMax) {
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
if (null === $comparison) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::UPDATED_AT, $updatedAt, $comparison);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter the query by a related \Thelia\Model\OrderProduct object
|
||||||
|
*
|
||||||
|
* @param \Thelia\Model\OrderProduct|ObjectCollection $orderProduct The related object(s) to use as filter
|
||||||
|
* @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function filterByOrderProduct($orderProduct, $comparison = null)
|
||||||
|
{
|
||||||
|
if ($orderProduct instanceof \Thelia\Model\OrderProduct) {
|
||||||
|
return $this
|
||||||
|
->addUsingAlias(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, $orderProduct->getId(), $comparison);
|
||||||
|
} elseif ($orderProduct instanceof ObjectCollection) {
|
||||||
|
if (null === $comparison) {
|
||||||
|
$comparison = Criteria::IN;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this
|
||||||
|
->addUsingAlias(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, $orderProduct->toKeyValue('PrimaryKey', 'Id'), $comparison);
|
||||||
|
} else {
|
||||||
|
throw new PropelException('filterByOrderProduct() only accepts arguments of type \Thelia\Model\OrderProduct or Collection');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a JOIN clause to the query using the OrderProduct relation
|
||||||
|
*
|
||||||
|
* @param string $relationAlias optional alias for the relation
|
||||||
|
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function joinOrderProduct($relationAlias = null, $joinType = Criteria::INNER_JOIN)
|
||||||
|
{
|
||||||
|
$tableMap = $this->getTableMap();
|
||||||
|
$relationMap = $tableMap->getRelation('OrderProduct');
|
||||||
|
|
||||||
|
// create a ModelJoin object for this join
|
||||||
|
$join = new ModelJoin();
|
||||||
|
$join->setJoinType($joinType);
|
||||||
|
$join->setRelationMap($relationMap, $this->useAliasInSQL ? $this->getModelAlias() : null, $relationAlias);
|
||||||
|
if ($previousJoin = $this->getPreviousJoin()) {
|
||||||
|
$join->setPreviousJoin($previousJoin);
|
||||||
|
}
|
||||||
|
|
||||||
|
// add the ModelJoin to the current object
|
||||||
|
if ($relationAlias) {
|
||||||
|
$this->addAlias($relationAlias, $relationMap->getRightTable()->getName());
|
||||||
|
$this->addJoinObject($join, $relationAlias);
|
||||||
|
} else {
|
||||||
|
$this->addJoinObject($join, 'OrderProduct');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use the OrderProduct relation OrderProduct object
|
||||||
|
*
|
||||||
|
* @see useQuery()
|
||||||
|
*
|
||||||
|
* @param string $relationAlias optional alias for the relation,
|
||||||
|
* to be used as main alias in the secondary query
|
||||||
|
* @param string $joinType Accepted values are null, 'left join', 'right join', 'inner join'
|
||||||
|
*
|
||||||
|
* @return \Thelia\Model\OrderProductQuery A secondary query class using the current class as primary query
|
||||||
|
*/
|
||||||
|
public function useOrderProductQuery($relationAlias = null, $joinType = Criteria::INNER_JOIN)
|
||||||
|
{
|
||||||
|
return $this
|
||||||
|
->joinOrderProduct($relationAlias, $joinType)
|
||||||
|
->useQuery($relationAlias ? $relationAlias : 'OrderProduct', '\Thelia\Model\OrderProductQuery');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exclude object from result
|
||||||
|
*
|
||||||
|
* @param ChildOrderAttributeCombination $orderAttributeCombination Object to remove from the list of results
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function prune($orderAttributeCombination = null)
|
||||||
|
{
|
||||||
|
if ($orderAttributeCombination) {
|
||||||
|
$this->addUsingAlias(OrderAttributeCombinationTableMap::ID, $orderAttributeCombination->getId(), Criteria::NOT_EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deletes all rows from the order_attribute_combination table.
|
||||||
|
*
|
||||||
|
* @param ConnectionInterface $con the connection to use
|
||||||
|
* @return int The number of affected rows (if supported by underlying database driver).
|
||||||
|
*/
|
||||||
|
public function doDeleteAll(ConnectionInterface $con = null)
|
||||||
|
{
|
||||||
|
if (null === $con) {
|
||||||
|
$con = Propel::getServiceContainer()->getWriteConnection(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
|
}
|
||||||
|
$affectedRows = 0; // initialize var to track total num of affected rows
|
||||||
|
try {
|
||||||
|
// use transaction because $criteria could contain info
|
||||||
|
// for more than one table or we could emulating ON DELETE CASCADE, etc.
|
||||||
|
$con->beginTransaction();
|
||||||
|
$affectedRows += parent::doDeleteAll($con);
|
||||||
|
// Because this db requires some delete cascade/set null emulation, we have to
|
||||||
|
// clear the cached instance *after* the emulation has happened (since
|
||||||
|
// instances get re-added by the select statement contained therein).
|
||||||
|
OrderAttributeCombinationTableMap::clearInstancePool();
|
||||||
|
OrderAttributeCombinationTableMap::clearRelatedInstancePool();
|
||||||
|
|
||||||
|
$con->commit();
|
||||||
|
} catch (PropelException $e) {
|
||||||
|
$con->rollBack();
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $affectedRows;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Performs a DELETE on the database, given a ChildOrderAttributeCombination or Criteria object OR a primary key value.
|
||||||
|
*
|
||||||
|
* @param mixed $values Criteria or ChildOrderAttributeCombination object or primary key or array of primary keys
|
||||||
|
* which is used to create the DELETE statement
|
||||||
|
* @param ConnectionInterface $con the connection to use
|
||||||
|
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
|
||||||
|
* if supported by native driver or if emulated using Propel.
|
||||||
|
* @throws PropelException Any exceptions caught during processing will be
|
||||||
|
* rethrown wrapped into a PropelException.
|
||||||
|
*/
|
||||||
|
public function delete(ConnectionInterface $con = null)
|
||||||
|
{
|
||||||
|
if (null === $con) {
|
||||||
|
$con = Propel::getServiceContainer()->getWriteConnection(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
$criteria = $this;
|
||||||
|
|
||||||
|
// Set the correct dbName
|
||||||
|
$criteria->setDbName(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
|
|
||||||
|
$affectedRows = 0; // initialize var to track total num of affected rows
|
||||||
|
|
||||||
|
try {
|
||||||
|
// use transaction because $criteria could contain info
|
||||||
|
// for more than one table or we could emulating ON DELETE CASCADE, etc.
|
||||||
|
$con->beginTransaction();
|
||||||
|
|
||||||
|
|
||||||
|
OrderAttributeCombinationTableMap::removeInstanceFromPool($criteria);
|
||||||
|
|
||||||
|
$affectedRows += ModelCriteria::delete($con);
|
||||||
|
OrderAttributeCombinationTableMap::clearRelatedInstancePool();
|
||||||
|
$con->commit();
|
||||||
|
|
||||||
|
return $affectedRows;
|
||||||
|
} catch (PropelException $e) {
|
||||||
|
$con->rollBack();
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// timestampable behavior
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter by the latest updated
|
||||||
|
*
|
||||||
|
* @param int $nbDays Maximum age of the latest update in days
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function recentlyUpdated($nbDays = 7)
|
||||||
|
{
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::UPDATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Filter by the latest created
|
||||||
|
*
|
||||||
|
* @param int $nbDays Maximum age of in days
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function recentlyCreated($nbDays = 7)
|
||||||
|
{
|
||||||
|
return $this->addUsingAlias(OrderAttributeCombinationTableMap::CREATED_AT, time() - $nbDays * 24 * 60 * 60, Criteria::GREATER_EQUAL);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Order by update date desc
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function lastUpdatedFirst()
|
||||||
|
{
|
||||||
|
return $this->addDescendingOrderByColumn(OrderAttributeCombinationTableMap::UPDATED_AT);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Order by update date asc
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function firstUpdatedFirst()
|
||||||
|
{
|
||||||
|
return $this->addAscendingOrderByColumn(OrderAttributeCombinationTableMap::UPDATED_AT);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Order by create date desc
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function lastCreatedFirst()
|
||||||
|
{
|
||||||
|
return $this->addDescendingOrderByColumn(OrderAttributeCombinationTableMap::CREATED_AT);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Order by create date asc
|
||||||
|
*
|
||||||
|
* @return ChildOrderAttributeCombinationQuery The current query, for fluid interface
|
||||||
|
*/
|
||||||
|
public function firstCreatedFirst()
|
||||||
|
{
|
||||||
|
return $this->addAscendingOrderByColumn(OrderAttributeCombinationTableMap::CREATED_AT);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // OrderAttributeCombinationQuery
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -10,12 +10,12 @@ use Propel\Runtime\Exception\PropelException;
|
|||||||
use Propel\Runtime\Map\RelationMap;
|
use Propel\Runtime\Map\RelationMap;
|
||||||
use Propel\Runtime\Map\TableMap;
|
use Propel\Runtime\Map\TableMap;
|
||||||
use Propel\Runtime\Map\TableMapTrait;
|
use Propel\Runtime\Map\TableMapTrait;
|
||||||
use Thelia\Model\OrderProduct;
|
use Thelia\Model\OrderAttributeCombination;
|
||||||
use Thelia\Model\OrderProductQuery;
|
use Thelia\Model\OrderAttributeCombinationQuery;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class defines the structure of the 'order_product' table.
|
* This class defines the structure of the 'order_attribute_combination' table.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@@ -25,14 +25,14 @@ use Thelia\Model\OrderProductQuery;
|
|||||||
* (i.e. if it's a text column type).
|
* (i.e. if it's a text column type).
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class OrderProductTableMap extends TableMap
|
class OrderAttributeCombinationTableMap extends TableMap
|
||||||
{
|
{
|
||||||
use InstancePoolTrait;
|
use InstancePoolTrait;
|
||||||
use TableMapTrait;
|
use TableMapTrait;
|
||||||
/**
|
/**
|
||||||
* The (dot-path) name of this class
|
* The (dot-path) name of this class
|
||||||
*/
|
*/
|
||||||
const CLASS_NAME = 'Thelia.Model.Map.OrderProductTableMap';
|
const CLASS_NAME = 'Thelia.Model.Map.OrderAttributeCombinationTableMap';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default database name for this class
|
* The default database name for this class
|
||||||
@@ -42,17 +42,17 @@ class OrderProductTableMap extends TableMap
|
|||||||
/**
|
/**
|
||||||
* The table name for this class
|
* The table name for this class
|
||||||
*/
|
*/
|
||||||
const TABLE_NAME = 'order_product';
|
const TABLE_NAME = 'order_attribute_combination';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The related Propel class for this table
|
* The related Propel class for this table
|
||||||
*/
|
*/
|
||||||
const OM_CLASS = '\\Thelia\\Model\\OrderProduct';
|
const OM_CLASS = '\\Thelia\\Model\\OrderAttributeCombination';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A class that can be returned by this tableMap
|
* A class that can be returned by this tableMap
|
||||||
*/
|
*/
|
||||||
const CLASS_DEFAULT = 'Thelia.Model.OrderProduct';
|
const CLASS_DEFAULT = 'Thelia.Model.OrderAttributeCombination';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The total number of columns
|
* The total number of columns
|
||||||
@@ -72,62 +72,62 @@ class OrderProductTableMap extends TableMap
|
|||||||
/**
|
/**
|
||||||
* the column name for the ID field
|
* the column name for the ID field
|
||||||
*/
|
*/
|
||||||
const ID = 'order_product.ID';
|
const ID = 'order_attribute_combination.ID';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the ORDER_ID field
|
* the column name for the ORDER_PRODUCT_ID field
|
||||||
*/
|
*/
|
||||||
const ORDER_ID = 'order_product.ORDER_ID';
|
const ORDER_PRODUCT_ID = 'order_attribute_combination.ORDER_PRODUCT_ID';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the PRODUCT_REF field
|
* the column name for the ATTRIBUTE_TITLE field
|
||||||
*/
|
*/
|
||||||
const PRODUCT_REF = 'order_product.PRODUCT_REF';
|
const ATTRIBUTE_TITLE = 'order_attribute_combination.ATTRIBUTE_TITLE';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the TITLE field
|
* the column name for the ATTRIBUTE_CHAPO field
|
||||||
*/
|
*/
|
||||||
const TITLE = 'order_product.TITLE';
|
const ATTRIBUTE_CHAPO = 'order_attribute_combination.ATTRIBUTE_CHAPO';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the DESCRIPTION field
|
* the column name for the ATTRIBUTE_DESCRIPTION field
|
||||||
*/
|
*/
|
||||||
const DESCRIPTION = 'order_product.DESCRIPTION';
|
const ATTRIBUTE_DESCRIPTION = 'order_attribute_combination.ATTRIBUTE_DESCRIPTION';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the CHAPO field
|
* the column name for the ATTRIBUTE_POSTSCRIPTUMN field
|
||||||
*/
|
*/
|
||||||
const CHAPO = 'order_product.CHAPO';
|
const ATTRIBUTE_POSTSCRIPTUMN = 'order_attribute_combination.ATTRIBUTE_POSTSCRIPTUMN';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the QUANTITY field
|
* the column name for the ATTRIBUTE_AV_TITLE field
|
||||||
*/
|
*/
|
||||||
const QUANTITY = 'order_product.QUANTITY';
|
const ATTRIBUTE_AV_TITLE = 'order_attribute_combination.ATTRIBUTE_AV_TITLE';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the PRICE field
|
* the column name for the ATTRIBUTE_AV_CHAPO field
|
||||||
*/
|
*/
|
||||||
const PRICE = 'order_product.PRICE';
|
const ATTRIBUTE_AV_CHAPO = 'order_attribute_combination.ATTRIBUTE_AV_CHAPO';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the TAX field
|
* the column name for the ATTRIBUTE_AV_DESCRIPTION field
|
||||||
*/
|
*/
|
||||||
const TAX = 'order_product.TAX';
|
const ATTRIBUTE_AV_DESCRIPTION = 'order_attribute_combination.ATTRIBUTE_AV_DESCRIPTION';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the PARENT field
|
* the column name for the ATTRIBUTE_AV_POSTSCRIPTUM field
|
||||||
*/
|
*/
|
||||||
const PARENT = 'order_product.PARENT';
|
const ATTRIBUTE_AV_POSTSCRIPTUM = 'order_attribute_combination.ATTRIBUTE_AV_POSTSCRIPTUM';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the CREATED_AT field
|
* the column name for the CREATED_AT field
|
||||||
*/
|
*/
|
||||||
const CREATED_AT = 'order_product.CREATED_AT';
|
const CREATED_AT = 'order_attribute_combination.CREATED_AT';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the column name for the UPDATED_AT field
|
* the column name for the UPDATED_AT field
|
||||||
*/
|
*/
|
||||||
const UPDATED_AT = 'order_product.UPDATED_AT';
|
const UPDATED_AT = 'order_attribute_combination.UPDATED_AT';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The default string format for model objects of the related table
|
* The default string format for model objects of the related table
|
||||||
@@ -141,11 +141,11 @@ class OrderProductTableMap extends TableMap
|
|||||||
* e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id'
|
* e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id'
|
||||||
*/
|
*/
|
||||||
protected static $fieldNames = array (
|
protected static $fieldNames = array (
|
||||||
self::TYPE_PHPNAME => array('Id', 'OrderId', 'ProductRef', 'Title', 'Description', 'Chapo', 'Quantity', 'Price', 'Tax', 'Parent', 'CreatedAt', 'UpdatedAt', ),
|
self::TYPE_PHPNAME => array('Id', 'OrderProductId', 'AttributeTitle', 'AttributeChapo', 'AttributeDescription', 'AttributePostscriptumn', 'AttributeAvTitle', 'AttributeAvChapo', 'AttributeAvDescription', 'AttributeAvPostscriptum', 'CreatedAt', 'UpdatedAt', ),
|
||||||
self::TYPE_STUDLYPHPNAME => array('id', 'orderId', 'productRef', 'title', 'description', 'chapo', 'quantity', 'price', 'tax', 'parent', 'createdAt', 'updatedAt', ),
|
self::TYPE_STUDLYPHPNAME => array('id', 'orderProductId', 'attributeTitle', 'attributeChapo', 'attributeDescription', 'attributePostscriptumn', 'attributeAvTitle', 'attributeAvChapo', 'attributeAvDescription', 'attributeAvPostscriptum', 'createdAt', 'updatedAt', ),
|
||||||
self::TYPE_COLNAME => array(OrderProductTableMap::ID, OrderProductTableMap::ORDER_ID, OrderProductTableMap::PRODUCT_REF, OrderProductTableMap::TITLE, OrderProductTableMap::DESCRIPTION, OrderProductTableMap::CHAPO, OrderProductTableMap::QUANTITY, OrderProductTableMap::PRICE, OrderProductTableMap::TAX, OrderProductTableMap::PARENT, OrderProductTableMap::CREATED_AT, OrderProductTableMap::UPDATED_AT, ),
|
self::TYPE_COLNAME => array(OrderAttributeCombinationTableMap::ID, OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID, OrderAttributeCombinationTableMap::ATTRIBUTE_TITLE, OrderAttributeCombinationTableMap::ATTRIBUTE_CHAPO, OrderAttributeCombinationTableMap::ATTRIBUTE_DESCRIPTION, OrderAttributeCombinationTableMap::ATTRIBUTE_POSTSCRIPTUMN, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_TITLE, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_CHAPO, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_DESCRIPTION, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_POSTSCRIPTUM, OrderAttributeCombinationTableMap::CREATED_AT, OrderAttributeCombinationTableMap::UPDATED_AT, ),
|
||||||
self::TYPE_RAW_COLNAME => array('ID', 'ORDER_ID', 'PRODUCT_REF', 'TITLE', 'DESCRIPTION', 'CHAPO', 'QUANTITY', 'PRICE', 'TAX', 'PARENT', 'CREATED_AT', 'UPDATED_AT', ),
|
self::TYPE_RAW_COLNAME => array('ID', 'ORDER_PRODUCT_ID', 'ATTRIBUTE_TITLE', 'ATTRIBUTE_CHAPO', 'ATTRIBUTE_DESCRIPTION', 'ATTRIBUTE_POSTSCRIPTUMN', 'ATTRIBUTE_AV_TITLE', 'ATTRIBUTE_AV_CHAPO', 'ATTRIBUTE_AV_DESCRIPTION', 'ATTRIBUTE_AV_POSTSCRIPTUM', 'CREATED_AT', 'UPDATED_AT', ),
|
||||||
self::TYPE_FIELDNAME => array('id', 'order_id', 'product_ref', 'title', 'description', 'chapo', 'quantity', 'price', 'tax', 'parent', 'created_at', 'updated_at', ),
|
self::TYPE_FIELDNAME => array('id', 'order_product_id', 'attribute_title', 'attribute_chapo', 'attribute_description', 'attribute_postscriptumn', 'attribute_av_title', 'attribute_av_chapo', 'attribute_av_description', 'attribute_av_postscriptum', 'created_at', 'updated_at', ),
|
||||||
self::TYPE_NUM => array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, )
|
self::TYPE_NUM => array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, )
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -156,11 +156,11 @@ class OrderProductTableMap extends TableMap
|
|||||||
* e.g. self::$fieldKeys[self::TYPE_PHPNAME]['Id'] = 0
|
* e.g. self::$fieldKeys[self::TYPE_PHPNAME]['Id'] = 0
|
||||||
*/
|
*/
|
||||||
protected static $fieldKeys = array (
|
protected static $fieldKeys = array (
|
||||||
self::TYPE_PHPNAME => array('Id' => 0, 'OrderId' => 1, 'ProductRef' => 2, 'Title' => 3, 'Description' => 4, 'Chapo' => 5, 'Quantity' => 6, 'Price' => 7, 'Tax' => 8, 'Parent' => 9, 'CreatedAt' => 10, 'UpdatedAt' => 11, ),
|
self::TYPE_PHPNAME => array('Id' => 0, 'OrderProductId' => 1, 'AttributeTitle' => 2, 'AttributeChapo' => 3, 'AttributeDescription' => 4, 'AttributePostscriptumn' => 5, 'AttributeAvTitle' => 6, 'AttributeAvChapo' => 7, 'AttributeAvDescription' => 8, 'AttributeAvPostscriptum' => 9, 'CreatedAt' => 10, 'UpdatedAt' => 11, ),
|
||||||
self::TYPE_STUDLYPHPNAME => array('id' => 0, 'orderId' => 1, 'productRef' => 2, 'title' => 3, 'description' => 4, 'chapo' => 5, 'quantity' => 6, 'price' => 7, 'tax' => 8, 'parent' => 9, 'createdAt' => 10, 'updatedAt' => 11, ),
|
self::TYPE_STUDLYPHPNAME => array('id' => 0, 'orderProductId' => 1, 'attributeTitle' => 2, 'attributeChapo' => 3, 'attributeDescription' => 4, 'attributePostscriptumn' => 5, 'attributeAvTitle' => 6, 'attributeAvChapo' => 7, 'attributeAvDescription' => 8, 'attributeAvPostscriptum' => 9, 'createdAt' => 10, 'updatedAt' => 11, ),
|
||||||
self::TYPE_COLNAME => array(OrderProductTableMap::ID => 0, OrderProductTableMap::ORDER_ID => 1, OrderProductTableMap::PRODUCT_REF => 2, OrderProductTableMap::TITLE => 3, OrderProductTableMap::DESCRIPTION => 4, OrderProductTableMap::CHAPO => 5, OrderProductTableMap::QUANTITY => 6, OrderProductTableMap::PRICE => 7, OrderProductTableMap::TAX => 8, OrderProductTableMap::PARENT => 9, OrderProductTableMap::CREATED_AT => 10, OrderProductTableMap::UPDATED_AT => 11, ),
|
self::TYPE_COLNAME => array(OrderAttributeCombinationTableMap::ID => 0, OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID => 1, OrderAttributeCombinationTableMap::ATTRIBUTE_TITLE => 2, OrderAttributeCombinationTableMap::ATTRIBUTE_CHAPO => 3, OrderAttributeCombinationTableMap::ATTRIBUTE_DESCRIPTION => 4, OrderAttributeCombinationTableMap::ATTRIBUTE_POSTSCRIPTUMN => 5, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_TITLE => 6, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_CHAPO => 7, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_DESCRIPTION => 8, OrderAttributeCombinationTableMap::ATTRIBUTE_AV_POSTSCRIPTUM => 9, OrderAttributeCombinationTableMap::CREATED_AT => 10, OrderAttributeCombinationTableMap::UPDATED_AT => 11, ),
|
||||||
self::TYPE_RAW_COLNAME => array('ID' => 0, 'ORDER_ID' => 1, 'PRODUCT_REF' => 2, 'TITLE' => 3, 'DESCRIPTION' => 4, 'CHAPO' => 5, 'QUANTITY' => 6, 'PRICE' => 7, 'TAX' => 8, 'PARENT' => 9, 'CREATED_AT' => 10, 'UPDATED_AT' => 11, ),
|
self::TYPE_RAW_COLNAME => array('ID' => 0, 'ORDER_PRODUCT_ID' => 1, 'ATTRIBUTE_TITLE' => 2, 'ATTRIBUTE_CHAPO' => 3, 'ATTRIBUTE_DESCRIPTION' => 4, 'ATTRIBUTE_POSTSCRIPTUMN' => 5, 'ATTRIBUTE_AV_TITLE' => 6, 'ATTRIBUTE_AV_CHAPO' => 7, 'ATTRIBUTE_AV_DESCRIPTION' => 8, 'ATTRIBUTE_AV_POSTSCRIPTUM' => 9, 'CREATED_AT' => 10, 'UPDATED_AT' => 11, ),
|
||||||
self::TYPE_FIELDNAME => array('id' => 0, 'order_id' => 1, 'product_ref' => 2, 'title' => 3, 'description' => 4, 'chapo' => 5, 'quantity' => 6, 'price' => 7, 'tax' => 8, 'parent' => 9, 'created_at' => 10, 'updated_at' => 11, ),
|
self::TYPE_FIELDNAME => array('id' => 0, 'order_product_id' => 1, 'attribute_title' => 2, 'attribute_chapo' => 3, 'attribute_description' => 4, 'attribute_postscriptumn' => 5, 'attribute_av_title' => 6, 'attribute_av_chapo' => 7, 'attribute_av_description' => 8, 'attribute_av_postscriptum' => 9, 'created_at' => 10, 'updated_at' => 11, ),
|
||||||
self::TYPE_NUM => array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, )
|
self::TYPE_NUM => array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, )
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -174,22 +174,22 @@ class OrderProductTableMap extends TableMap
|
|||||||
public function initialize()
|
public function initialize()
|
||||||
{
|
{
|
||||||
// attributes
|
// attributes
|
||||||
$this->setName('order_product');
|
$this->setName('order_attribute_combination');
|
||||||
$this->setPhpName('OrderProduct');
|
$this->setPhpName('OrderAttributeCombination');
|
||||||
$this->setClassName('\\Thelia\\Model\\OrderProduct');
|
$this->setClassName('\\Thelia\\Model\\OrderAttributeCombination');
|
||||||
$this->setPackage('Thelia.Model');
|
$this->setPackage('Thelia.Model');
|
||||||
$this->setUseIdGenerator(true);
|
$this->setUseIdGenerator(true);
|
||||||
// columns
|
// columns
|
||||||
$this->addPrimaryKey('ID', 'Id', 'INTEGER', true, null, null);
|
$this->addPrimaryKey('ID', 'Id', 'INTEGER', true, null, null);
|
||||||
$this->addForeignKey('ORDER_ID', 'OrderId', 'INTEGER', 'order', 'ID', true, null, null);
|
$this->addForeignKey('ORDER_PRODUCT_ID', 'OrderProductId', 'INTEGER', 'order_product', 'ID', true, null, null);
|
||||||
$this->addColumn('PRODUCT_REF', 'ProductRef', 'VARCHAR', false, 255, null);
|
$this->addColumn('ATTRIBUTE_TITLE', 'AttributeTitle', 'VARCHAR', true, 255, null);
|
||||||
$this->addColumn('TITLE', 'Title', 'VARCHAR', false, 255, null);
|
$this->addColumn('ATTRIBUTE_CHAPO', 'AttributeChapo', 'LONGVARCHAR', false, null, null);
|
||||||
$this->addColumn('DESCRIPTION', 'Description', 'LONGVARCHAR', false, null, null);
|
$this->addColumn('ATTRIBUTE_DESCRIPTION', 'AttributeDescription', 'CLOB', false, null, null);
|
||||||
$this->addColumn('CHAPO', 'Chapo', 'LONGVARCHAR', false, null, null);
|
$this->addColumn('ATTRIBUTE_POSTSCRIPTUMN', 'AttributePostscriptumn', 'LONGVARCHAR', false, null, null);
|
||||||
$this->addColumn('QUANTITY', 'Quantity', 'FLOAT', true, null, null);
|
$this->addColumn('ATTRIBUTE_AV_TITLE', 'AttributeAvTitle', 'VARCHAR', true, 255, null);
|
||||||
$this->addColumn('PRICE', 'Price', 'FLOAT', true, null, null);
|
$this->addColumn('ATTRIBUTE_AV_CHAPO', 'AttributeAvChapo', 'LONGVARCHAR', false, null, null);
|
||||||
$this->addColumn('TAX', 'Tax', 'FLOAT', false, null, null);
|
$this->addColumn('ATTRIBUTE_AV_DESCRIPTION', 'AttributeAvDescription', 'CLOB', false, null, null);
|
||||||
$this->addColumn('PARENT', 'Parent', 'INTEGER', false, null, null);
|
$this->addColumn('ATTRIBUTE_AV_POSTSCRIPTUM', 'AttributeAvPostscriptum', 'LONGVARCHAR', false, null, null);
|
||||||
$this->addColumn('CREATED_AT', 'CreatedAt', 'TIMESTAMP', false, null, null);
|
$this->addColumn('CREATED_AT', 'CreatedAt', 'TIMESTAMP', false, null, null);
|
||||||
$this->addColumn('UPDATED_AT', 'UpdatedAt', 'TIMESTAMP', false, null, null);
|
$this->addColumn('UPDATED_AT', 'UpdatedAt', 'TIMESTAMP', false, null, null);
|
||||||
} // initialize()
|
} // initialize()
|
||||||
@@ -199,8 +199,7 @@ class OrderProductTableMap extends TableMap
|
|||||||
*/
|
*/
|
||||||
public function buildRelations()
|
public function buildRelations()
|
||||||
{
|
{
|
||||||
$this->addRelation('Order', '\\Thelia\\Model\\Order', RelationMap::MANY_TO_ONE, array('order_id' => 'id', ), 'CASCADE', 'RESTRICT');
|
$this->addRelation('OrderProduct', '\\Thelia\\Model\\OrderProduct', RelationMap::MANY_TO_ONE, array('order_product_id' => 'id', ), 'CASCADE', 'RESTRICT');
|
||||||
$this->addRelation('OrderFeature', '\\Thelia\\Model\\OrderFeature', RelationMap::ONE_TO_MANY, array('id' => 'order_product_id', ), 'CASCADE', 'RESTRICT', 'OrderFeatures');
|
|
||||||
} // buildRelations()
|
} // buildRelations()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -215,15 +214,6 @@ class OrderProductTableMap extends TableMap
|
|||||||
'timestampable' => array('create_column' => 'created_at', 'update_column' => 'updated_at', ),
|
'timestampable' => array('create_column' => 'created_at', 'update_column' => 'updated_at', ),
|
||||||
);
|
);
|
||||||
} // getBehaviors()
|
} // getBehaviors()
|
||||||
/**
|
|
||||||
* Method to invalidate the instance pool of all tables related to order_product * by a foreign key with ON DELETE CASCADE
|
|
||||||
*/
|
|
||||||
public static function clearRelatedInstancePool()
|
|
||||||
{
|
|
||||||
// Invalidate objects in ".$this->getClassNameFromBuilder($joinedTableTableMapBuilder)." instance pool,
|
|
||||||
// since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
|
|
||||||
OrderFeatureTableMap::clearInstancePool();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
|
* Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
|
||||||
@@ -281,7 +271,7 @@ class OrderProductTableMap extends TableMap
|
|||||||
*/
|
*/
|
||||||
public static function getOMClass($withPrefix = true)
|
public static function getOMClass($withPrefix = true)
|
||||||
{
|
{
|
||||||
return $withPrefix ? OrderProductTableMap::CLASS_DEFAULT : OrderProductTableMap::OM_CLASS;
|
return $withPrefix ? OrderAttributeCombinationTableMap::CLASS_DEFAULT : OrderAttributeCombinationTableMap::OM_CLASS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -295,21 +285,21 @@ class OrderProductTableMap extends TableMap
|
|||||||
*
|
*
|
||||||
* @throws PropelException Any exceptions caught during processing will be
|
* @throws PropelException Any exceptions caught during processing will be
|
||||||
* rethrown wrapped into a PropelException.
|
* rethrown wrapped into a PropelException.
|
||||||
* @return array (OrderProduct object, last column rank)
|
* @return array (OrderAttributeCombination object, last column rank)
|
||||||
*/
|
*/
|
||||||
public static function populateObject($row, $offset = 0, $indexType = TableMap::TYPE_NUM)
|
public static function populateObject($row, $offset = 0, $indexType = TableMap::TYPE_NUM)
|
||||||
{
|
{
|
||||||
$key = OrderProductTableMap::getPrimaryKeyHashFromRow($row, $offset, $indexType);
|
$key = OrderAttributeCombinationTableMap::getPrimaryKeyHashFromRow($row, $offset, $indexType);
|
||||||
if (null !== ($obj = OrderProductTableMap::getInstanceFromPool($key))) {
|
if (null !== ($obj = OrderAttributeCombinationTableMap::getInstanceFromPool($key))) {
|
||||||
// We no longer rehydrate the object, since this can cause data loss.
|
// We no longer rehydrate the object, since this can cause data loss.
|
||||||
// See http://www.propelorm.org/ticket/509
|
// See http://www.propelorm.org/ticket/509
|
||||||
// $obj->hydrate($row, $offset, true); // rehydrate
|
// $obj->hydrate($row, $offset, true); // rehydrate
|
||||||
$col = $offset + OrderProductTableMap::NUM_HYDRATE_COLUMNS;
|
$col = $offset + OrderAttributeCombinationTableMap::NUM_HYDRATE_COLUMNS;
|
||||||
} else {
|
} else {
|
||||||
$cls = OrderProductTableMap::OM_CLASS;
|
$cls = OrderAttributeCombinationTableMap::OM_CLASS;
|
||||||
$obj = new $cls();
|
$obj = new $cls();
|
||||||
$col = $obj->hydrate($row, $offset, false, $indexType);
|
$col = $obj->hydrate($row, $offset, false, $indexType);
|
||||||
OrderProductTableMap::addInstanceToPool($obj, $key);
|
OrderAttributeCombinationTableMap::addInstanceToPool($obj, $key);
|
||||||
}
|
}
|
||||||
|
|
||||||
return array($obj, $col);
|
return array($obj, $col);
|
||||||
@@ -332,8 +322,8 @@ class OrderProductTableMap extends TableMap
|
|||||||
$cls = static::getOMClass(false);
|
$cls = static::getOMClass(false);
|
||||||
// populate the object(s)
|
// populate the object(s)
|
||||||
while ($row = $dataFetcher->fetch()) {
|
while ($row = $dataFetcher->fetch()) {
|
||||||
$key = OrderProductTableMap::getPrimaryKeyHashFromRow($row, 0, $dataFetcher->getIndexType());
|
$key = OrderAttributeCombinationTableMap::getPrimaryKeyHashFromRow($row, 0, $dataFetcher->getIndexType());
|
||||||
if (null !== ($obj = OrderProductTableMap::getInstanceFromPool($key))) {
|
if (null !== ($obj = OrderAttributeCombinationTableMap::getInstanceFromPool($key))) {
|
||||||
// We no longer rehydrate the object, since this can cause data loss.
|
// We no longer rehydrate the object, since this can cause data loss.
|
||||||
// See http://www.propelorm.org/ticket/509
|
// See http://www.propelorm.org/ticket/509
|
||||||
// $obj->hydrate($row, 0, true); // rehydrate
|
// $obj->hydrate($row, 0, true); // rehydrate
|
||||||
@@ -342,7 +332,7 @@ class OrderProductTableMap extends TableMap
|
|||||||
$obj = new $cls();
|
$obj = new $cls();
|
||||||
$obj->hydrate($row);
|
$obj->hydrate($row);
|
||||||
$results[] = $obj;
|
$results[] = $obj;
|
||||||
OrderProductTableMap::addInstanceToPool($obj, $key);
|
OrderAttributeCombinationTableMap::addInstanceToPool($obj, $key);
|
||||||
} // if key exists
|
} // if key exists
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -363,29 +353,29 @@ class OrderProductTableMap extends TableMap
|
|||||||
public static function addSelectColumns(Criteria $criteria, $alias = null)
|
public static function addSelectColumns(Criteria $criteria, $alias = null)
|
||||||
{
|
{
|
||||||
if (null === $alias) {
|
if (null === $alias) {
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::ID);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ID);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::ORDER_ID);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ORDER_PRODUCT_ID);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::PRODUCT_REF);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_TITLE);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::TITLE);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_CHAPO);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::DESCRIPTION);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_DESCRIPTION);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::CHAPO);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_POSTSCRIPTUMN);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::QUANTITY);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_TITLE);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::PRICE);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_CHAPO);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::TAX);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_DESCRIPTION);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::PARENT);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::ATTRIBUTE_AV_POSTSCRIPTUM);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::CREATED_AT);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::CREATED_AT);
|
||||||
$criteria->addSelectColumn(OrderProductTableMap::UPDATED_AT);
|
$criteria->addSelectColumn(OrderAttributeCombinationTableMap::UPDATED_AT);
|
||||||
} else {
|
} else {
|
||||||
$criteria->addSelectColumn($alias . '.ID');
|
$criteria->addSelectColumn($alias . '.ID');
|
||||||
$criteria->addSelectColumn($alias . '.ORDER_ID');
|
$criteria->addSelectColumn($alias . '.ORDER_PRODUCT_ID');
|
||||||
$criteria->addSelectColumn($alias . '.PRODUCT_REF');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_TITLE');
|
||||||
$criteria->addSelectColumn($alias . '.TITLE');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_CHAPO');
|
||||||
$criteria->addSelectColumn($alias . '.DESCRIPTION');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_DESCRIPTION');
|
||||||
$criteria->addSelectColumn($alias . '.CHAPO');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_POSTSCRIPTUMN');
|
||||||
$criteria->addSelectColumn($alias . '.QUANTITY');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_AV_TITLE');
|
||||||
$criteria->addSelectColumn($alias . '.PRICE');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_AV_CHAPO');
|
||||||
$criteria->addSelectColumn($alias . '.TAX');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_AV_DESCRIPTION');
|
||||||
$criteria->addSelectColumn($alias . '.PARENT');
|
$criteria->addSelectColumn($alias . '.ATTRIBUTE_AV_POSTSCRIPTUM');
|
||||||
$criteria->addSelectColumn($alias . '.CREATED_AT');
|
$criteria->addSelectColumn($alias . '.CREATED_AT');
|
||||||
$criteria->addSelectColumn($alias . '.UPDATED_AT');
|
$criteria->addSelectColumn($alias . '.UPDATED_AT');
|
||||||
}
|
}
|
||||||
@@ -400,7 +390,7 @@ class OrderProductTableMap extends TableMap
|
|||||||
*/
|
*/
|
||||||
public static function getTableMap()
|
public static function getTableMap()
|
||||||
{
|
{
|
||||||
return Propel::getServiceContainer()->getDatabaseMap(OrderProductTableMap::DATABASE_NAME)->getTable(OrderProductTableMap::TABLE_NAME);
|
return Propel::getServiceContainer()->getDatabaseMap(OrderAttributeCombinationTableMap::DATABASE_NAME)->getTable(OrderAttributeCombinationTableMap::TABLE_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -408,16 +398,16 @@ class OrderProductTableMap extends TableMap
|
|||||||
*/
|
*/
|
||||||
public static function buildTableMap()
|
public static function buildTableMap()
|
||||||
{
|
{
|
||||||
$dbMap = Propel::getServiceContainer()->getDatabaseMap(OrderProductTableMap::DATABASE_NAME);
|
$dbMap = Propel::getServiceContainer()->getDatabaseMap(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
if (!$dbMap->hasTable(OrderProductTableMap::TABLE_NAME)) {
|
if (!$dbMap->hasTable(OrderAttributeCombinationTableMap::TABLE_NAME)) {
|
||||||
$dbMap->addTableObject(new OrderProductTableMap());
|
$dbMap->addTableObject(new OrderAttributeCombinationTableMap());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Performs a DELETE on the database, given a OrderProduct or Criteria object OR a primary key value.
|
* Performs a DELETE on the database, given a OrderAttributeCombination or Criteria object OR a primary key value.
|
||||||
*
|
*
|
||||||
* @param mixed $values Criteria or OrderProduct object or primary key or array of primary keys
|
* @param mixed $values Criteria or OrderAttributeCombination object or primary key or array of primary keys
|
||||||
* which is used to create the DELETE statement
|
* which is used to create the DELETE statement
|
||||||
* @param ConnectionInterface $con the connection to use
|
* @param ConnectionInterface $con the connection to use
|
||||||
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
|
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
|
||||||
@@ -428,25 +418,25 @@ class OrderProductTableMap extends TableMap
|
|||||||
public static function doDelete($values, ConnectionInterface $con = null)
|
public static function doDelete($values, ConnectionInterface $con = null)
|
||||||
{
|
{
|
||||||
if (null === $con) {
|
if (null === $con) {
|
||||||
$con = Propel::getServiceContainer()->getWriteConnection(OrderProductTableMap::DATABASE_NAME);
|
$con = Propel::getServiceContainer()->getWriteConnection(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($values instanceof Criteria) {
|
if ($values instanceof Criteria) {
|
||||||
// rename for clarity
|
// rename for clarity
|
||||||
$criteria = $values;
|
$criteria = $values;
|
||||||
} elseif ($values instanceof \Thelia\Model\OrderProduct) { // it's a model object
|
} elseif ($values instanceof \Thelia\Model\OrderAttributeCombination) { // it's a model object
|
||||||
// create criteria based on pk values
|
// create criteria based on pk values
|
||||||
$criteria = $values->buildPkeyCriteria();
|
$criteria = $values->buildPkeyCriteria();
|
||||||
} else { // it's a primary key, or an array of pks
|
} else { // it's a primary key, or an array of pks
|
||||||
$criteria = new Criteria(OrderProductTableMap::DATABASE_NAME);
|
$criteria = new Criteria(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
$criteria->add(OrderProductTableMap::ID, (array) $values, Criteria::IN);
|
$criteria->add(OrderAttributeCombinationTableMap::ID, (array) $values, Criteria::IN);
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = OrderProductQuery::create()->mergeWith($criteria);
|
$query = OrderAttributeCombinationQuery::create()->mergeWith($criteria);
|
||||||
|
|
||||||
if ($values instanceof Criteria) { OrderProductTableMap::clearInstancePool();
|
if ($values instanceof Criteria) { OrderAttributeCombinationTableMap::clearInstancePool();
|
||||||
} elseif (!is_object($values)) { // it's a primary key, or an array of pks
|
} elseif (!is_object($values)) { // it's a primary key, or an array of pks
|
||||||
foreach ((array) $values as $singleval) { OrderProductTableMap::removeInstanceFromPool($singleval);
|
foreach ((array) $values as $singleval) { OrderAttributeCombinationTableMap::removeInstanceFromPool($singleval);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -454,20 +444,20 @@ class OrderProductTableMap extends TableMap
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deletes all rows from the order_product table.
|
* Deletes all rows from the order_attribute_combination table.
|
||||||
*
|
*
|
||||||
* @param ConnectionInterface $con the connection to use
|
* @param ConnectionInterface $con the connection to use
|
||||||
* @return int The number of affected rows (if supported by underlying database driver).
|
* @return int The number of affected rows (if supported by underlying database driver).
|
||||||
*/
|
*/
|
||||||
public static function doDeleteAll(ConnectionInterface $con = null)
|
public static function doDeleteAll(ConnectionInterface $con = null)
|
||||||
{
|
{
|
||||||
return OrderProductQuery::create()->doDeleteAll($con);
|
return OrderAttributeCombinationQuery::create()->doDeleteAll($con);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Performs an INSERT on the database, given a OrderProduct or Criteria object.
|
* Performs an INSERT on the database, given a OrderAttributeCombination or Criteria object.
|
||||||
*
|
*
|
||||||
* @param mixed $criteria Criteria or OrderProduct object containing data that is used to create the INSERT statement.
|
* @param mixed $criteria Criteria or OrderAttributeCombination object containing data that is used to create the INSERT statement.
|
||||||
* @param ConnectionInterface $con the ConnectionInterface connection to use
|
* @param ConnectionInterface $con the ConnectionInterface connection to use
|
||||||
* @return mixed The new primary key.
|
* @return mixed The new primary key.
|
||||||
* @throws PropelException Any exceptions caught during processing will be
|
* @throws PropelException Any exceptions caught during processing will be
|
||||||
@@ -476,22 +466,22 @@ class OrderProductTableMap extends TableMap
|
|||||||
public static function doInsert($criteria, ConnectionInterface $con = null)
|
public static function doInsert($criteria, ConnectionInterface $con = null)
|
||||||
{
|
{
|
||||||
if (null === $con) {
|
if (null === $con) {
|
||||||
$con = Propel::getServiceContainer()->getWriteConnection(OrderProductTableMap::DATABASE_NAME);
|
$con = Propel::getServiceContainer()->getWriteConnection(OrderAttributeCombinationTableMap::DATABASE_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($criteria instanceof Criteria) {
|
if ($criteria instanceof Criteria) {
|
||||||
$criteria = clone $criteria; // rename for clarity
|
$criteria = clone $criteria; // rename for clarity
|
||||||
} else {
|
} else {
|
||||||
$criteria = $criteria->buildCriteria(); // build Criteria from OrderProduct object
|
$criteria = $criteria->buildCriteria(); // build Criteria from OrderAttributeCombination object
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($criteria->containsKey(OrderProductTableMap::ID) && $criteria->keyContainsValue(OrderProductTableMap::ID) ) {
|
if ($criteria->containsKey(OrderAttributeCombinationTableMap::ID) && $criteria->keyContainsValue(OrderAttributeCombinationTableMap::ID) ) {
|
||||||
throw new PropelException('Cannot insert a value for auto-increment primary key ('.OrderProductTableMap::ID.')');
|
throw new PropelException('Cannot insert a value for auto-increment primary key ('.OrderAttributeCombinationTableMap::ID.')');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Set the correct dbName
|
// Set the correct dbName
|
||||||
$query = OrderProductQuery::create()->mergeWith($criteria);
|
$query = OrderAttributeCombinationQuery::create()->mergeWith($criteria);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// use transaction because $criteria could contain info
|
// use transaction because $criteria could contain info
|
||||||
@@ -507,7 +497,7 @@ class OrderProductTableMap extends TableMap
|
|||||||
return $pk;
|
return $pk;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // OrderProductTableMap
|
} // OrderAttributeCombinationTableMap
|
||||||
// This is the static code needed to register the TableMap for this table with the main Propel class.
|
// This is the static code needed to register the TableMap for this table with the main Propel class.
|
||||||
//
|
//
|
||||||
OrderProductTableMap::buildTableMap();
|
OrderAttributeCombinationTableMap::buildTableMap();
|
||||||
10
core/lib/Thelia/Model/OrderAttributeCombination.php
Normal file
10
core/lib/Thelia/Model/OrderAttributeCombination.php
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Thelia\Model;
|
||||||
|
|
||||||
|
use Thelia\Model\Base\OrderAttributeCombination as BaseOrderAttributeCombination;
|
||||||
|
|
||||||
|
class OrderAttributeCombination extends BaseOrderAttributeCombination
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
9
core/lib/Thelia/Model/OrderProductQuery.php → core/lib/Thelia/Model/OrderAttributeCombinationQuery.php
Executable file → Normal file
9
core/lib/Thelia/Model/OrderProductQuery.php → core/lib/Thelia/Model/OrderAttributeCombinationQuery.php
Executable file → Normal file
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
namespace Thelia\Model;
|
namespace Thelia\Model;
|
||||||
|
|
||||||
use Thelia\Model\Base\OrderProductQuery as BaseOrderProductQuery;
|
use Thelia\Model\Base\OrderAttributeCombinationQuery as BaseOrderAttributeCombinationQuery;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skeleton subclass for performing query and update operations on the 'order_product' table.
|
* Skeleton subclass for performing query and update operations on the 'order_attribute_combination' table.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@@ -15,6 +15,7 @@ use Thelia\Model\Base\OrderProductQuery as BaseOrderProductQuery;
|
|||||||
* long as it does not already exist in the output directory.
|
* long as it does not already exist in the output directory.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
class OrderProductQuery extends BaseOrderProductQuery {
|
class OrderAttributeCombinationQuery extends BaseOrderAttributeCombinationQuery
|
||||||
|
{
|
||||||
|
|
||||||
} // OrderProductQuery
|
} // OrderAttributeCombinationQuery
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Thelia\Model;
|
|
||||||
|
|
||||||
use Thelia\Model\Base\OrderProduct as BaseOrderProduct;
|
|
||||||
|
|
||||||
class OrderProduct extends BaseOrderProduct {
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -760,14 +760,20 @@ CREATE TABLE `order_product`
|
|||||||
(
|
(
|
||||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||||
`order_id` INTEGER NOT NULL,
|
`order_id` INTEGER NOT NULL,
|
||||||
`product_ref` VARCHAR(255),
|
`product_ref` VARCHAR(255) NOT NULL,
|
||||||
|
`product_sale_elements_ref` VARCHAR(255) NOT NULL,
|
||||||
`title` VARCHAR(255),
|
`title` VARCHAR(255),
|
||||||
`description` TEXT,
|
|
||||||
`chapo` TEXT,
|
`chapo` TEXT,
|
||||||
|
`description` LONGTEXT,
|
||||||
|
`postscriptum` TEXT,
|
||||||
`quantity` FLOAT NOT NULL,
|
`quantity` FLOAT NOT NULL,
|
||||||
`price` FLOAT NOT NULL,
|
`price` FLOAT NOT NULL,
|
||||||
|
`promo_price` VARCHAR(45),
|
||||||
|
`was_new` TINYINT NOT NULL,
|
||||||
|
`was_in_promo` TINYINT NOT NULL,
|
||||||
|
`weight` VARCHAR(45),
|
||||||
`tax` FLOAT,
|
`tax` FLOAT,
|
||||||
`parent` INTEGER,
|
`parent` INTEGER COMMENT 'not managed yet',
|
||||||
`created_at` DATETIME,
|
`created_at` DATETIME,
|
||||||
`updated_at` DATETIME,
|
`updated_at` DATETIME,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
@@ -796,17 +802,23 @@ CREATE TABLE `order_status`
|
|||||||
) ENGINE=InnoDB;
|
) ENGINE=InnoDB;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- order_feature
|
-- order_attribute_combination
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `order_feature`;
|
DROP TABLE IF EXISTS `order_attribute_combination`;
|
||||||
|
|
||||||
CREATE TABLE `order_feature`
|
CREATE TABLE `order_attribute_combination`
|
||||||
(
|
(
|
||||||
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
`id` INTEGER NOT NULL AUTO_INCREMENT,
|
||||||
`order_product_id` INTEGER NOT NULL,
|
`order_product_id` INTEGER NOT NULL,
|
||||||
`feature_desc` VARCHAR(255),
|
`attribute_title` VARCHAR(255) NOT NULL,
|
||||||
`feature_av_desc` VARCHAR(255),
|
`attribute_chapo` TEXT,
|
||||||
|
`attribute_description` LONGTEXT,
|
||||||
|
`attribute_postscriptumn` TEXT,
|
||||||
|
`attribute_av_title` VARCHAR(255) NOT NULL,
|
||||||
|
`attribute_av_chapo` TEXT,
|
||||||
|
`attribute_av_description` LONGTEXT,
|
||||||
|
`attribute_av_postscriptum` TEXT,
|
||||||
`created_at` DATETIME,
|
`created_at` DATETIME,
|
||||||
`updated_at` DATETIME,
|
`updated_at` DATETIME,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
|
|||||||
@@ -595,14 +595,20 @@
|
|||||||
<table name="order_product" namespace="Thelia\Model">
|
<table name="order_product" namespace="Thelia\Model">
|
||||||
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
|
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
|
||||||
<column name="order_id" required="true" type="INTEGER" />
|
<column name="order_id" required="true" type="INTEGER" />
|
||||||
<column name="product_ref" size="255" type="VARCHAR" />
|
<column name="product_ref" required="true" size="255" type="VARCHAR" />
|
||||||
|
<column name="product_sale_elements_ref" required="true" size="255" type="VARCHAR" />
|
||||||
<column name="title" size="255" type="VARCHAR" />
|
<column name="title" size="255" type="VARCHAR" />
|
||||||
<column name="description" type="LONGVARCHAR" />
|
|
||||||
<column name="chapo" type="LONGVARCHAR" />
|
<column name="chapo" type="LONGVARCHAR" />
|
||||||
|
<column name="description" type="CLOB" />
|
||||||
|
<column name="postscriptum" type="LONGVARCHAR" />
|
||||||
<column name="quantity" required="true" type="FLOAT" />
|
<column name="quantity" required="true" type="FLOAT" />
|
||||||
<column name="price" required="true" type="FLOAT" />
|
<column name="price" required="true" type="FLOAT" />
|
||||||
|
<column name="promo_price" size="45" type="VARCHAR" />
|
||||||
|
<column name="was_new" required="true" type="TINYINT" />
|
||||||
|
<column name="was_in_promo" required="true" type="TINYINT" />
|
||||||
|
<column name="weight" size="45" type="VARCHAR" />
|
||||||
<column name="tax" type="FLOAT" />
|
<column name="tax" type="FLOAT" />
|
||||||
<column name="parent" type="INTEGER" />
|
<column description="not managed yet" name="parent" type="INTEGER" />
|
||||||
<foreign-key foreignTable="order" name="fk_order_product_order_id" onDelete="CASCADE" onUpdate="RESTRICT">
|
<foreign-key foreignTable="order" name="fk_order_product_order_id" onDelete="CASCADE" onUpdate="RESTRICT">
|
||||||
<reference foreign="id" local="order_id" />
|
<reference foreign="id" local="order_id" />
|
||||||
</foreign-key>
|
</foreign-key>
|
||||||
@@ -626,11 +632,17 @@
|
|||||||
<parameter name="i18n_columns" value="title, description, chapo, postscriptum" />
|
<parameter name="i18n_columns" value="title, description, chapo, postscriptum" />
|
||||||
</behavior>
|
</behavior>
|
||||||
</table>
|
</table>
|
||||||
<table name="order_feature" namespace="Thelia\Model">
|
<table name="order_attribute_combination" namespace="Thelia\Model">
|
||||||
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
|
<column autoIncrement="true" name="id" primaryKey="true" required="true" type="INTEGER" />
|
||||||
<column name="order_product_id" required="true" type="INTEGER" />
|
<column name="order_product_id" required="true" type="INTEGER" />
|
||||||
<column name="feature_desc" size="255" type="VARCHAR" />
|
<column name="attribute_title" required="true" size="255" type="VARCHAR" />
|
||||||
<column name="feature_av_desc" size="255" type="VARCHAR" />
|
<column name="attribute_chapo" type="LONGVARCHAR" />
|
||||||
|
<column name="attribute_description" type="CLOB" />
|
||||||
|
<column name="attribute_postscriptumn" type="LONGVARCHAR" />
|
||||||
|
<column name="attribute_av_title" required="true" size="255" type="VARCHAR" />
|
||||||
|
<column name="attribute_av_chapo" type="LONGVARCHAR" />
|
||||||
|
<column name="attribute_av_description" type="CLOB" />
|
||||||
|
<column name="attribute_av_postscriptum" type="LONGVARCHAR" />
|
||||||
<foreign-key foreignTable="order_product" name="fk_order_feature_order_product_id" onDelete="CASCADE" onUpdate="RESTRICT">
|
<foreign-key foreignTable="order_product" name="fk_order_feature_order_product_id" onDelete="CASCADE" onUpdate="RESTRICT">
|
||||||
<reference foreign="id" local="order_product_id" />
|
<reference foreign="id" local="order_product_id" />
|
||||||
</foreign-key>
|
</foreign-key>
|
||||||
|
|||||||
Reference in New Issue
Block a user