Magento Coding Solutions

orders product by oder_id in magento


======================
get orderproduct By oder_id in magento
============================

$order = Mage::getModel('sales/order')->loadByIncrementId($order_id);
        $items = $order->getAllItems();
                        $itemcount=count($items);
                                             
                        $date=date ("Y-m-d H:i:s");
                        foreach ($items as $itemId => $item)
                        {
                       
                            $product=Mage::getModel('catalog/product')->load($item->getProductId());
                      }

No comments:

Post a Comment