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

前端之家收集整理的这篇文章主要介绍了php – 如何获取运送/开票Magento核心API之外的订单的地址ID?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从Magento的刚刚完成的订单中获取运费/帐单地址.

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

Mage::getModel(‘sales/order’)->load($array_data[“order_id”])->getShippingAddressId()

有人有什么想法吗?

以下可能有助于寻找类似解决方案的人:
// 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);

}

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

祝你好运.

原文链接:https://www.f2er.com/php/131159.html

猜你在找的PHP相关文章