4

我试图在订单创建后调用观察者,并在付款后捕获。到目前为止,我已经尝试过;checkout_submit_all_after、sales_order_payment_place_end、sales_order_place_after、sales_order_payment_pay、sales_order_payment_capture、sales_order_payment_transaction_save_after

只列举主要的。我还记录了 dispatchEvent() 中的所有事件调度,但没有发现任何突出的内容,并且仅在我需要时才被触发。我遇到的问题是订单的状态总是以太“付款待处理”或早于此的东西;这意味着我不知道订单是否会失败或成功。

我的目标是仅在成功订单时触发功能。谢谢。

4

3 回答 3

6

经过更多测试后,我发现以下观察者可以解决问题;

checkout_onepage_controller_success_action

这仅返回订单 ID,因此;

$order_id = $observer->getData('order_ids');
$order = Mage::getModel('sales/order')->load($order_id);

并且您看到订单状态为“处理中”并且付款已批准(或未批准)。

于 2013-10-21T01:43:37.177 回答
3

1 ) here is custom config.xml for call observer file

<?xml version="1.0"?>
<config>
    <modules>
        <Namespace_Modulename>
            <version>0.1.0</version>
        </Namespace_Modulename>
    </modules>
    <frontend>
        <events>            
            <checkout_submit_all_after>
                <observers>
                    <Namespace_Modulename_Customevent>
                        <type>singleton</type>
                        <class>Namespace_Modulename_Model_Observer</class>
                        <method>customFunction</method>
                    </Namespace_Modulename_Customevent>
                </observers>
            </checkout_submit_all_after>
        </events>
    </frontend>    
</config>

2 ) create observer.php file inside your module/Model directory and paste this code

<?php
  class Namespace_Modulename_Model_Observer
{
    public function customFunction(Varien_Event_Observer $observer)
    {
        $order = $observer->getEvent()->getOrder();
         //here you can add your custom code

    }        

}

please try this.. sure it will help you !

于 2013-10-16T06:23:53.023 回答
0

我也尝试了所有事件,但没有成功。然后我开始覆盖 Mage OnePageController 并调用我的自定义函数。下面是覆盖一步结帐的代码。

app\etc\modules\Namespace_Module.xml

<Namespace_Checkout>
    <active>true</active>
    <codePool>local</codePool>
</Namespace_Checkout>

app\code\local\Namespace\Checkout\etc\config.xml

<?xml version="1.0"?>
<config>    
  <modules>
     <Namespace_Checkout>            
        <version>0.1.0</version>        
     </Namespace_Checkout>    
  </modules>        
    <frontend>        
        <routers>            
            <checkout>                
                <args>                    
                    <modules>                        
                        <Namespace_Checkout before="Mage_OneStepCheckout">Namespace_Checkout</Namespace_Checkout>                    
                    </modules>                
                </args>            
            </checkout>        
        </routers>    
    </frontend>     
</config>

app\code\local\Namespace\Checkout\controllers\OnepageController.php

<?php
require_once 'Mage/Checkout/controllers/OnepageController.php';

class Namespace_Checkout_OnepageController extends Mage_Checkout_OnepageController{
    public function successAction(){
        $session = $this->getOnepage()->getCheckout();
        if (!$session->getLastSuccessQuoteId()) {
            $this->_redirect('checkout/cart');
            return;
        }

        $lastQuoteId = $session->getLastQuoteId();
        $lastOrderId = $session->getLastOrderId();
        $lastRecurringProfiles = $session->getLastRecurringProfileIds();
        if (!$lastQuoteId || (!$lastOrderId && empty($lastRecurringProfiles))) {
            $this->_redirect('checkout/cart');
            return;
        }

        $this->customFunction(); // Custom function to call

        $session->clear();
        $this->loadLayout();
        $this->_initLayoutMessages('checkout/session');
        Mage::dispatchEvent('checkout_onepage_controller_success_action', array('order_ids' => array($lastOrderId)));
        $this->renderLayout();
    }

    function customFunction(){
        // This function is calling before clearing order session
        //Here you can put all your custom code 
    }
}
?>

在上面的控制器中,我添加了customFunction()您可以放置​​自定义代码的位置。

希望对您有所帮助!

于 2013-10-16T05:42:07.070 回答