php – 如何获取运送/开票Magento核心API之外的订单的地址ID?

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了php – 如何获取运送/开票Magento核心API之外的订单的地址ID?脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从Magento的刚刚完成的订单中获取运费/帐单地址.

我已经尝试了以下代码,但它没有工作:

有人有什么想法吗?

以下可能有助于寻找类似解决方案的人:
// Get the id of the last order for the current user(session)
$orderId = Mage::getSingleton('checkout/session')->getLastOrderId();        

// If an order actually exists
if ($orderId) {

    //Get the order details based on the order id ($orderId)
    $order = Mage::getModel('sales/order')->load($orderId);

    // Get the id of the orders shipping address
    $shippingId = $order->getShippingAddress()->getId();

    // Get shipping address data using the id
    $address = Mage::getModel('sales/order_address')->load($shippingId);

    // Display the shipping address data array on screen
    var_dump($address);

}

注意:显然,此解决方案要求用户拥有当前会话

祝你好运.

脚本宝典总结

以上是脚本宝典为你收集整理的php – 如何获取运送/开票Magento核心API之外的订单的地址ID?全部内容,希望文章能够帮你解决php – 如何获取运送/开票Magento核心API之外的订单的地址ID?所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。