1

我遇到了一个问题,其中捆绑产品的子选项/产品在交易电子邮件中没有正确排序。

在这种情况下,排序顺序很重要,因为产品型号是选项之一,需要首先显示。

template/bundle/email/order/items/order/default.phtml中,我们有视图逻辑来吐出产品详细信息:

<?php $_item = $this->getItem() ?>
<?php $_order=$this->getOrder() ?>

<?php $parentItem = $this->getItem() ?>
<?php $items = array_merge(array($parentItem), $parentItem->getChildrenItems()); ?>

<?php foreach ($items as $_item): ?>

// etc...

像往常一样,子产品的排序顺序在管理员中定义,并在产品视图、购物车、结帐等中正常显示……但在电子邮件中显示期间,订单被修改了。

奇怪的是顺序也不是按字母顺序排列的。事实上,这似乎有点武断——奇怪……

无论如何,我应该如何对$items数组进行排序以匹配预期的排序顺序?

注意 = 这是在admin->catalog->product->bundle items->position中设置的值。


更新

这是我最终确定的辅助方法:

/**
 * @codepool   Local
 * @package    Namespace
 * @module     Module
 */

class Namespace_Module_Helper_Product_Sort extends Mage_Core_Helper_Abstract
{

    /*
    * @param $item : bundle product 
    * @return array
    */
    public function sortBundleChildrenByPosition( $item )
    {
        $sorted = array();
        $sorted[] = $item;

        //Mage::log('Namespace_Module_Helper_Product_Bundle::sortChildrenByPosition /n'.print_r($item->debug(), true));

        // grab the product (bundle parent)
        $_product = $item->getProduct();

        // grab child order items
        $_children = $item->getChildrenItems();

        // grab sort order for options
        $optionCollection = $_product->getTypeInstance(true)->getOptionsCollection($_product);

        // iterate over options, comparing title / label, if they match, toss into return array
        foreach ($optionCollection as $option){

            //Mage::log('$option:'.print_r($option->debug(), true));
            $title = $option['default_title'];

            foreach ($_children as $child){
                $prodOption = $child->getProductOptions();
                $bundleSelectionAttributes = unserialize($prodOption['bundle_selection_attributes']);
                //Mage::log('$_children=>$child:product_options[bundle_selection_attributes]'.print_r($bundleSelectionAttributes, true));

                if ($bundleSelectionAttributes['option_label'] == $title){
                    //Mage::log('$bundleSelectionAttributes[option_label] == '.$title.'. $sorted[] ='. print_r($child->debug(), true) );
                    $sorted[] = $child;
                    continue; 
                }
            }

        }

        return $sorted;
    }

}

我在template/bundle/email/order/items/order/default.phtml中调用它(或任何需要排序的捆绑包):

<?php 
    $_item = $this->getItem(); 
    $_order=$this->getOrder(); 

    $parentItem = $this->getItem(); 

    //$items = array_merge( array($parentItem), $parentItem->getChildrenItems()); 

    $items = $this->helper('Namespace_Module/Product_Sort')->sortBundleChildrenByPosition( $_item );
?>

...我1000%肯定有一些内置的方法可以做到这一点,而且可能更干净。但经过几个小时的搜寻,我找不到它。

这行得通。就这些。

4

1 回答 1

2

一种解决方法:

  • 遍历所有$items并创建一个带有id(作为键)和名称(作为值)的数组让我们假设它被称为$sortedPrd。
  • 对新数组的 ($sortedPrd) 值进行排序(按字母顺序)
  • 循环$sortedPrd并使用 it's key 从中提取给定的产品$items

更新

这是一些获取捆绑选项(子产品)位置的代码:

$optionCollection = $_product->getTypeInstance(true)->getOptionsCollection($_product);
foreach ($optionCollection as $prdOptions){

  $position = $prdOptions->getPosition();
}

有关更多信息,请参阅此问题:Magento:如何在管理中使用产品时沿其所有数据加载产品

于 2013-01-02T20:56:02.973 回答