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.
如何在课堂上获取订单 ID Mage_Adminhtml_Block_Sales_Order_Create_Shipping_Method_Form?
Mage_Adminhtml_Block_Sales_Order_Create_Shipping_Method_Form
我尝试了很多方法,例如$this->getQuote->getId();,$this->getOrder->getId();等等……但没有用。我是 magento 的新手,对它的基于 zend 的模块结构非常陌生。
$this->getQuote->getId();
$this->getOrder->getId();
任何帮助将不胜感激。
您可以通过以下方式获取订单 ID:
$this->getQuote()->getOrder()->getId();