Magento:以编程方式创建订单捆绑产品和可配置产品 [英] Magento : Programmatically create order bundled products and configurable products

查看:97
本文介绍了Magento:以编程方式创建订单捆绑产品和可配置产品的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使用 Vinai 中的以下代码创建订单,但仅适用于简单产品.我已经尝试过使用$ buyInfo中的键和值,但是顺序似乎无法进行.我可能会缺少什么?

I tried using the following code from Vinai in creating an order but it only works in simple products. I already tried playing with the keys and values in $buyInfo but it seems the order won't proceed. I might be missing something?

$quote = Mage::getModel('sales/quote')
        ->setStoreId(Mage::app()->getStore('default')->getId());

if ('do customer orders') {
        // for customer orders:
        $customer = Mage::getModel('customer/customer')
                ->setWebsiteId(1)
                ->loadByEmail('customer@example.com');
        $quote->assignCustomer($customer);
} else {
        // for guesr orders only:
        $quote->setCustomerEmail('customer@example.com');
}

// add product(s)
$product = Mage::getModel('catalog/product')->load(8);
$buyInfo = array(
        'qty' => 1,
        // custom option id => value id
        // or
        // configurable attribute id => value id
);
$quote->addProduct($product, new Varien_Object($buyInfo));

$addressData = array(
        'firstname' => 'Test',
        'lastname' => 'Test',
        'street' => 'Sample Street 10',
        'city' => 'Somewhere',
        'postcode' => '123456',
        'telephone' => '123456',
        'country_id' => 'US',
        'region_id' => 12, // id from directory_country_region table
);

$billingAddress = $quote->getBillingAddress()->addData($addressData);
$shippingAddress = $quote->getShippingAddress()->addData($addressData);

$shippingAddress->setCollectShippingRates(true)->collectShippingRates()
                ->setShippingMethod('flatrate_flatrate')
                ->setPaymentMethod('checkmo');

$quote->getPayment()->importData(array('method' => 'checkmo'));

$quote->collectTotals()->save();

$service = Mage::getModel('sales/service_quote', $quote);
$service->submitAll();
$order = $service->getOrder();

关于如何使其在捆绑式和可配置产品中也起作用的任何想法?谢谢!

Any idea on how to make it work also in bundled and configurable products? Thanks!

推荐答案

要制作budle产品,您必须将prodtypeID设置为"bundle"

To make a budle product you must set a prodtypeID to "bundle"

这是我使用的代码:

    $__magproduct = new Mage_Catalog_Model_Product();



    // Build the product 
    $__magproduct->setSku(trim($sku_of_product)); 
    $__magproduct->setAttributeSetId('4');# 4 is for default 
    $__magproduct->setTypeId($prodtype); 
    $__magproduct->setName($getprodId->ProductName); 
    //$__magproduct->setCategoryIds(array(42)); # some cat id's, 
    $__magproduct->setWebsiteIDs(array(1)); # Website id, 1 is default 
    //$__magproduct->setDescription($getprodId->Description); 
    //$__magproduct->setShortDescription($getprodId->Description); 
    $__magproduct->setPrice($prodprice); # Set some price

    //Default Magento attribute 
    $__magproduct->setWeight($getprodId->Weight); 

    $__magproduct->setVisibility(Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH); 
    $__magproduct->setStatus(1); 
    $__magproduct->setTaxClassId(2); # default tax class 


    $__magproduct->setCreatedAt(strtotime('now')); 

    try { 
    $__magproduct->save(); 

    if (!($stockItem = $product->getStockItem())) {
                $stockItem = Mage::getModel('cataloginventory/stock_item');
                $stockItem->assignProduct($__magproduct)
                          ->setData('stock_id', 1)
                          ->setData('store_id', 1);
            }

            $stockItem->setData('qty', $qty)
                      ->setData('is_in_stock', $isinstock)
                      ->setData('manage_stock', 1)
                      ->setData('use_config_manage_stock', 0)
                      ->save();

        unset($__magproduct,$stockItem);

,然后插入捆绑的选项:

and after that insert a bundled options:

$productCheck = Mage::getModel('catalog/product')->loadByAttribute('sku',$getprodId->Code);         
Mage::register('product', $productCheck);









          $position = 0;

          $optionRawData = array();

          $selectionRawData = array();
          $selectionRawData[0] = array();

         foreach ($materials as $material) {
                $material = (array) $material;

                $komponenta = $client->GetProductSimple($material["ProductID"]);
                $komponenta = (array) $komponenta;

                echo "&nbsp;&nbsp;&nbsp;assigned: ".$komponenta["Code"]." ".$komponenta["ProductName"]." ks(".$material["Count"].")<br>\n";  

                $itemSKU = Mage::getModel('catalog/product')->getIdBySku(trim($getprodId->Code));
                $materialSKU = Mage::getModel('catalog/product')->getIdBySku(trim($komponenta["Code"]));

                if (($itemSKU != "") && ($materialSKU != ""))
                    {

                $position++;

$optionRawData[$position] = array(
    'required' => 1,
    'option_id' => '',
    'position' => '',
    'type' => 'radio',
    'title' => 'Komponenta '.$komponenta["ProductName"],
    'default_title' => 'Komponenta '.$komponenta["ProductName"],
    'delete' => '',
);


$selectionRawData[$position][] = array(
    'product_id' => $materialSKU,
    'selection_qty' => $material["Count"],
    'selection_can_change_qty' => 0,
    'position' => 0,
    'is_default' => 1,
    'selection_id' => '',
    'selection_price_type' => 0,
    'selection_price_value' => 0.0,
    'option_id' => '',
    'delete' => ''
);






                    };

                unset($material,$komponenta,$itemSKU,$materialSKU);

         };




Mage::register('productCheck', $productCheck);
Mage::register('current_product', $productCheck);
$productCheck->setCanSaveConfigurableAttributes(false);
$productCheck->setCanSaveCustomOptions(true);
// Set the Bundle Options & Selection Data
$productCheck->setBundleOptionsData($optionRawData);
$productCheck->setBundleSelectionsData($selectionRawData);
$productCheck->setCanSaveBundleSelections(true);
$productCheck->setAffectBundleProductSelections(true);

$productCheck->save();

绑定项与可配置项不同!

这篇关于Magento:以编程方式创建订单捆绑产品和可配置产品的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆