0

在 adyen no magento 模块中,我想阻止任何通过银行单据发出的通知。来自以下路径的 ProcessNotification.php 文件:app/code/community/Adyen/Payment/Model 负责处理来自 Adyen 服务器的任何通知,并且通过以下代码,我可以阻止所有通知,无论支付方式如何。

代码:

$eventCode = trim($params->getData('eventCode'));
if ($eventCode == Adyen_Payment_Model_Event:: AUTHORISATION) {
    $this->_debugData['processResponse info'] = 'Skip notification REPORT_AVAILABLE';
    $this->_debug($storeId);
    return;
}

使用以下代码,在付款确认事件中,我阻止了所有通知,但它最终包括从信用卡购物的通知,我只想阻止来自银行单的通知。

4

1 回答 1

0

我为解决这个问题所做的代码如下:

$eventCode = trim($params->getData('eventCode'));
if ($eventCode == Adyen_Payment_Model_Event::ADYEN_EVENT_AUTHORISATION){
    $payment = $params->getData('paymentMethod');
    if($payment == "boletobancario_santander") {
        $this->_debugData['processResponse info'] = 'Skip notification REPORT_AVAILABLE';
        $this->_debug($storeId);
        return;
    }
}
于 2018-03-12T19:45:23.650 回答