Magento在结账时获取客户送货地址

时间:2016-03-24 19:08:26

标签: php magento magento-1.9

我想在结账时获取客户的送货地址。我们要做的是使它如果他们试图通过UPS运送到邮政信箱,它会输出一个错误页面。在结帐页面中,有一个复选框,可以在其中检查保存到其帐户中的不同地址。我已经知道它是否正确地检测到他们是否正在使用UPS,但是我无法正确地获取客户的地址。无论我做什么,它都会记录默认的送货地址,即使他们选择了另一个送货地址。我的问题是我能做些什么来选择地址2而不是地址1?这是我的代码。错误输出$ street的原因是我可以看到变量$ street中包含的内容。

        $quote = $this->getOnepage()->getQuote();
        $shippingAddress = $quote->getShippingAddress();
        $street = $shippingAddress->getStreet1();

        //Check to see if customer is trying to use UPS to ship to a PO Box.
        if (preg_match("/p\.* *o\.* *box/i", $street)){
            if ((($shippingMethod=="tablerate3_bestway") || ($shippingMethod=="tablerate_bestway") || ($shippingMethod=="tablerate2_bestway"))){
                $result = array (
                    'error' => -1,
                    'message' => $this->__($street)
                );
                $this->getResponse()->setBody(Zend_Json::encode($result));
            }
        }

1 个答案:

答案 0 :(得分:3)

对于送货地址

Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData();

对于结算地址

Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress()->getData();