在 magento 中阻止 Adyen 状态

Block Adyen status in magento

在 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;
}

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

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

$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;
    }
}