注文から小計と総計を取得しようとしていますが、結果は常に NULL です。
オンラインで見つけた多くのソリューションを試しましたが、何も機能しません..私が待っているイベントは次のとおりです: sales_order_place_after
これはコードです:
class MyCompany_MyObserver_Model_Observer {
public function send_email($observer) {
$customer = Mage::getSingleton('customer/session')->getCustomer();
//Get name and email of customer
$email = $customer->getEmail();
$fullname = $customer->getName();
//Get the customer group and check that if Trade customer group a email gets sent
$groupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
これまでのすべてのコードは正常に機能しています。名前と電子メールとグループ ID を取得できます。
以下のコードは何があっても壊れ続けます! 私は見つけることができるすべての解決策を試しました.私はvar_dumpで値を確認しようとしています..
$session= Mage::getSingleton('checkout/session');
//Get totals
$number = Mage::getModel('checkout/cart')->getQuote()->getTotals();
$subtotal = number_format($number,2);
$discount = $totals['discount']->getValue();
$shippingtotal = $totals['shipping']->getValue();
var_dump($grandtotal);
//die();
$grand_total = Mage::getModel('checkout/cart')->getQuote()->getGrandTotal();
$shippingMethod = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingMethod();
$paymentMethod = Mage::getSingleton('checkout/session')->getQuote()->getPayment()->getMethodInstance()->getTitle();
//Get billing and shipping address
$billingaddress = Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress();
$billingStreet = $billingaddress->getData('street');
$billingPostcode = $billingaddress->getData("postcode");
$billingCity = $billingaddress->getData("city");
$billingRegion = $billingaddress->getRegionCode();
$billingCountry = $billingaddress->getCountryModel()->getName();
$shippingAddress = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress();
$shippingName = $shippingAddress->getName();
$shippingCompany = $shippingAddress->getData("company");
$shippingStreet = $shippingAddress->getData("street");
$shippingPostcode = $shippingAddress->getData("postcode");
$shippingCity = $shippingAddress->getData("city");
$shippingRegion = $shippingAddress->getRegion();
$shippingCountry = $shippingAddress->getCountryModel()->getName();
}
}
私の構成ファイルは次のようになります。私が得ることができる唯一のものは次のとおりです: 注文 ID 顧客名と電子メール。
<events>
<checkout_onepage_controller_success_action>
<observers>
<sales_order_place_after>
<type>singleton</type>
<class>MyCompany_MyObserver_Model_Observer</class>
<method>send_email</method>
</sales_order_place_after>
</observers>
</checkout_onepage_controller_success_action>
</events>