Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 DownloadController.php 我创建了一个模块来覆盖 linkAction()
我需要获取产品对应的产品 SKU 和订单 ID。我已经能够获取 SKU,但我不知道如何在此函数中获取订单 ID。
任何帮助深表感谢。
假设你在link行动中,你可以使用这个:
link
$orderItem = Mage::getModel('sales/order_item')->load($linkPurchasedItem->getOrderItemId()); // Use $orderItem->getOrderId() to get order ID