注文の出荷データから顧客の電話を取得する方法は?


回答:



4

ガネーシュ、以下のコードを使用して、注文の配送先住所からお客様の電話番号を取得できません。

$orderOBject->getShippingAddress()->getTelephone();

もしtype of order is virtualあなたdoes not get telephone no配送先住所からの場合 。magentoは仮想注文の配送先住所を保存ないので 。


1

これは私のために働きました:

$Phone = Mage::getSingleton('customer/session')->getCustomer()
    ->getPrimaryBillingAddress()
    ->getTelephone();

アカウントセクションに表示する必要がある場合、この作品は注文できません。これは機能しません
Pratik Kamani
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.