9

如何通过attribute1 = value1 AND (attribute2 = value2 OR attribute3 = value2)过滤 Magento 销售订单集合?我可以写WHERE {COND1} AND {COND2} OR {COND3},但我不能分组AND ({COND2} OR {COND3})

首先,这不是重复的 AFAIK,我已经看到,它在 1.3.2 版中运行良好,但在企业版 1.11.1 中却不行。这就是我想要做的......获取在定义的日期范围内创建或更新的、状态为“处理”的 Magento 订单。以下是在以前版本中有效的代码,但在我的版本中无效:

$orderIds = Mage::getModel('sales/order')->getCollection()
    ->addFieldToFilter('status', 'processing')
    ->addFieldToFilter(array(
        array(
            'attribute' => 'created_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
        array(
            'attribute' => 'updated_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
    ));

这是它生成的 SQL,以及由此产生的错误:

SELECT `main_table`.* FROM `sales_flat_order` AS `main_table`
WHERE (status = 'processing') AND (Array = '')

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'Array' in 'where clause' 

在挖掘代码时,我addFieldToFilter在 lib/Varien/Data/Collection/Db.php 中找到了该函数

/** 
 * Add field filter to collection
 *
 * @see self::_getConditionSql for $condition
 * @param string $field
 * @param null|string|array $condition
 * @return Mage_Eav_Model_Entity_Collection_Abstract
 */
public function addFieldToFilter($field, $condition=null)
{   
    $field = $this->_getMappedField($field);
    $this->_select->where($this->_getConditionSql($field, $condition),
        null, Varien_Db_Select::TYPE_CONDITION);
    return $this;
}   

// **********************************************
// ** Different from addFieldToFilter in 1.3.2 **
// **********************************************

/** 
 * Add field filter to collection
 *
 * If $attribute is an array will add OR condition with following format:
 * array(
 *     array('attribute'=>'firstname', 'like'=>'test%'),
 *     array('attribute'=>'lastname', 'like'=>'test%'),
 * )
 *
 * @see self::_getConditionSql for $condition
 * @param string|array $attribute
 * @param null|string|array $condition
 * @return Mage_Eav_Model_Entity_Collection_Abstract
 */
public function addFieldToFilter($field, $condition=null)
{   
    $field = $this->_getMappedField($field);
    $this->_select->where($this->_getConditionSql($field, $condition));
    return $this;
}       

它看起来像addFieldToFilter以前接受第一个参数作为数组,但现在它必须是一个字符串......有趣,所以我尝试了以下零运气......

$orderIds = Mage::getModel('sales/order')->getCollection()
    ->addFieldToFilter('status', 'processing')
    ->addFieldToFilter('attribute', array(
        array(
            'attribute' => 'created_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
        array(
            'attribute' => 'updated_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
    ));
SELECT `main_table`.* FROM `sales_flat_order` AS `main_table`
WHERE (status = 'processing')
AND ((
    (attribute >= '2012-06-13 17:52:01' AND attribute <= '2012-06-15 17:52:01')
 OR (attribute >= '2012-06-13 17:52:01' AND attribute <= '2012-06-15 17:52:01')
))

我知道我可以通过操作 SQL 来做到这一点,但如果有的话,我真的很想知道如何用“Magento 方式”来做到这一点......

顺便说一句,我也尝试过使用addAttributeToFilter,错误消息是“无法确定字段名称”。


更新

我遇到了两个Mage_Sales_Model_Resource_Order_Collection看起来很有希望的函数,但它们仍然不是我想要的。

/**
 * Add field search filter to collection as OR condition
 *
 * @see self::_getConditionSql for $condition
 *
 * @param string $field
 * @param null|string|array $condition
 * @return Mage_Sales_Model_Resource_Order_Collection
 */
public function addFieldToSearchFilter($field, $condition = null)
{
    $field = $this->_getMappedField($field);
    $this->_select->orWhere($this->_getConditionSql($field, $condition));
    return $this;
}

/**
 * Specify collection select filter by attribute value
 *
 * @param array $attributes
 * @param array|integer|string|null $condition
 * @return Mage_Sales_Model_Resource_Order_Collection
 */
public function addAttributeToSearchFilter($attributes, $condition = null)
{
    if (is_array($attributes) && !empty($attributes)) {
        $this->_addAddressFields();

        $toFilterData = array();
        foreach ($attributes as $attribute) {
            $this->addFieldToSearchFilter($this->_attributeToField($attribute['attribute']), $attribute);
        }
    } else {
        $this->addAttributeToFilter($attributes, $condition);
    }

    return $this;
}

当我更新我的代码时,我非常接近我想要的结果,但是我真正想要的是拥有CONDITION1 AND (CONDITION2 OR CONDITION3)

$orderIds = Mage::getModel('sales/order')->getCollection()
    ->addFieldToFilter('status', 'processing')
    ->addAttributeToSearchFilter(array(
        array(
            'attribute' => 'created_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
        array(
            'attribute' => 'updated_at',
            'from' => $fromDate->toString('yyyy-MM-dd HH:mm:ss'),
            'to'   => $toDate->toString('yyyy-MM-dd HH:mm:ss'),
        ),
    ));

SELECT `main_table`.*,
       `billing_o_a`.`firstname`,
       `billing_o_a`.`lastname`,
       `billing_o_a`.`telephone`,
       `billing_o_a`.`postcode`,
       `shipping_o_a`.`firstname`,
       `shipping_o_a`.`lastname`,
       `shipping_o_a`.`telephone`,
       `shipping_o_a`.`postcode`
FROM `sales_flat_order` AS `main_table`
LEFT JOIN `sales_flat_order_address` AS `billing_o_a`
    ON (main_table.entity_id = billing_o_a.parent_id AND billing_o_a.address_type = 'billing')
LEFT JOIN `sales_flat_order_address` AS `shipping_o_a`
    ON (main_table.entity_id = shipping_o_a.parent_id AND shipping_o_a.address_type = 'shipping')
WHERE (status = 'processing')
OR (created_at >= '2012-06-16 16:43:38' AND created_at <= '2012-06-18 16:43:38')
OR (updated_at >= '2012-06-16 16:43:38' AND updated_at <= '2012-06-18 16:43:38')
4

3 回答 3

2

请注意,FLAT TABLE 和 EAV 集合使用不同的语法!

向 EAV 集合添加 OR 条件

请注意,当为同一属性指定 OR 条件时,如果您想使用两个不同的属性,则语法是不同的。

用于$collection->load(true)测试并将指定的过滤器视为 SQL(我发现这种方式更容易理解)。

对于 EAV 集合,使用addAttributeToFilter()or addFieldToFilter(),但第一个可以采用可选的第三个$joinType参数。

如何在 EAV 集合上为 ONE 属性添加 OR 过滤器:属性代码是第一个参数,条件是第二个参数。

例如:$col->addFieldToFilter('name', array(array('like' => 'M%'), array('like' => '%O'))); // (get items whose name starts with M OR ends with O)

如何为 EAV 集合上的不同属性添加 OR 过滤器:仅传递一个参数,即具有属性的条件数组。

向 FLAT TABLE 集合添加 OR 条件

在平面表集合上指定具有单个属性的 OR 过滤器与在 EAV 集合上相同。

例如:$col->addFieldToFilter('name', array(array('like' => 'M%'), array('like' => '%O'))); // get items whose name start with M OR end with O

要在 OR 条件中加入多个属性,语法与 EAV 集合不同(注意:这在 Magento 1.6 中已损坏)

例如:$col->addFieldToFilter(array('weight', 'name'), array(array('in' => array(1,3)), array('like' => 'M%')));

第一个属性映射到第一个条件,第二个属性映射到第二个条件,依此类推

由于这在 1.6 中被打破,我们可以使用以下方法为多个属性指定简单的相等条件addFilter()

例如:$col->addFilter('weight', 1, 'or')->addFilter('weight', 2, 'or')->addFilter('sku', 'ABC', 'or'); // weight is 1 or 2 or sku is ABC

您也可以始终使用$collection->getSelect()->orWhere(…),但您必须注意跨 RDBMS 的兼容性

注意:这是我多年前在 tumblr 上发布的两件事的交叉帖子: http ://tweetorials.tumblr.com/post/10844018716/eav-collection-or-filters
http://tweetorials.tumblr.com/post/
11102525164/flat-table-collection-or-filters

于 2014-01-17T15:43:29.340 回答
1

这是我不想使用的解决方案,它通过 Zend_Db 方法修改 SELECT 语句。

$orderIds = Mage::getModel('sales/order')->getCollection()
    ->getSelect();
$adapter = $orderIds->getAdapter();
$quotedFrom = $adapter->quote(
    $fromDate->toString('yyyy-MM-dd HH:mm:ss')
);
$quotedTo = $adapter->quote(
    $toDate->toString('yyyy-MM-dd HH:mm:ss')
);
$orderIds
    ->where('status = ?', 'processing')
    ->where(
        vsprintf(
            '(created_at >= %s AND created_at <= %s)'
          . ' OR (updated_at >= %s AND updated_at <= %s)',
            array(
                $quotedFrom, $quotedTo,
                $quotedFrom, $quotedTo,
            )
        )
    );
于 2012-06-18T17:54:07.947 回答
0

也许是时候在核心方面做出一些改变了。我们有一些类似的问题。可能的情况是。

(条件1)或((条件2)和(条件3)......)

如果你对它是如何制作的感兴趣。尝试阅读 http://winzter143.blogspot.com/2012/03/magento-hack-nested-addattributetofilte.html

于 2013-08-01T06:33:06.687 回答