Magento从订单商品中将可配置产品添加到购物车

时间:2014-02-21 07:39:43

标签: php magento magento-1.7

我想将产品添加到购物车中,并选择订购产品的选项。 作为示例,我订购了一个可配置产品,其中可用选项为 S,M,L 。我选择 M 并订购。现在我想拉这个订单并以编程方式再次移动到购物车。 我在许多不同的过程中尝试这一点,但我还没有成功。请有人建议我怎么做?

1 个答案:

答案 0 :(得分:0)

Supravat, 请尝试使用eav属性获取大小大小的选项ID,以编程方式创建购物车网址

 <?php
$ConfigProduct=Mage::getModel('catalog/product')->load($cpid);
$GetAllowAttributes=$ConfigProduct->getTypeInstance(true)
            ->getConfigurableAttributes($ConfigProduct);

 foreach ($GetAllowAttributes() as $attribute) {
                $productAttribute   = $attribute->getProductAttribute();
               $attribute_code= $productAttribute->getAttributeCode();
               $attributeid=$productAttribute->getId();
               break;


 }
$attribute_details = Mage::getSingleton("eav/config")->getAttribute("catalog_product", $attribute_code);
$options = $attribute_details->getSource()->getAllOptions(false);
foreach($options as $option){
    // print_r($option) and find all the elements
    //echo $option["value"];
    //echo $option["label"];
    if($option["label"]==$youlabel){
        $opid=$option["value"];
         $cartUrl=Mage::helper('checkout/cart')->getAddUrl($ConfigProduct).'?super_attribute['.$attributeid.']='.$option["value"].'&qty=1';
         break;
    }
}