5

所以,万岁 - 我正在尝试创建一个新的自定义支付网关。它旨在通过第三方 API 进行身份验证/捕获,但不需要重定向到第三方站点。

据我了解,当在 Magento 中下订单/完成订单并且网关设置为“授权和捕获”时,它应该从网关模型中触发“捕获”方法。目前,它没有这样做。

当然,如果我专门从 Admin Order 视图捕获,它会尝试捕获,但这需要在结帐时立即发生(同样,我的理解是它已经应该)。

在我的网关模型中,我有以下内容(为了便于阅读而被截断):

<?php
class Example_Gateway_Model_Payment extends Mage_Payment_Model_Method_Cc
{
    protected $_code = 'example';

    protected $_isGateway = true;
    protected $_canAuthorize = true;
    protected $_canCapture = true;
    protected $_canUseInternal = true;
    protected $_canUseCheckout = true;

    // This is an empty block class that extends Mage_Payment_Block_Form_Cc
    protected $_formBlockType = 'example/form_example';

    public function authorize(Varien_Object $payment, $amount)
    {
        Mage::log('Authorizing!');
    }

    public function capture(Varien_Object $payment, $amount)
    {
        Mage::log('** Capturing **');
        // Third-party API stuff would go here, with exceptions being thrown if the gateway determines they've provided an invalid card, etc.
    }

    public function assignData($data)
    {
        Mage::log('Assigning Data');
    }
}

这个支付模型本身肯定有效 - 我得到 和 的日志输出assignData()validate()以及__construct()如果我添加它。但无论我做什么,实际下订单时捕获或授权方法都不会触发。

我的 config.xml 有点像这样:

<?xml version="1.0"?>
<config>
    <modules>
        <Example_Gateway>
            <version>0.0.5</version>
        </Example_Gateway>
    </modules>
    <global>
        <blocks>
            <gateway>
                <class>Example_Gateway_Block</class>
            </gateway>
        </blocks>
        <models>
            <gateway>
                <class>Example_Gateway_Model</class>
            </gateway>
        </models>
        <helpers>
            <gateway>
                <class>Example_Gateway_Helper</class>
            </gateway>
        </helpers>
    </global>
    <frontend>
      <!-- Snip.. Nothing special here -->
    </frontend>
    <default>
        <payment>
            <gateway>
                <sort_order>0</sort_order>
                <model>gateway/payment</model>
                <enabled>1</enabled>
                <order_staus>processing</order_status>
                <payment_action>authorize_capture</payment_action>
                <cctypes>VI,MC,AE,DI</cctypes>
                <useccv>1</useccv>
            </gateway>
        </payment>
    </default>
</config>

我认为不需要资源模型,因为我不需要任何额外的表;我的期望是它将简单地使用sales_flat_order_payment相关表来存储任何网关相关/提供的数据(txn id 等)

同样,我只是扩展默认的 CC 块以获取标准付款表单。

我错过了什么?它必须是我忽略的小而简单的东西。

提前致谢!


更新: 到目前为止,我已经实现了一个解决方法,它使用观察者来手动调用 capture() 方法的 checkout_type_onepage_save_order 事件 - 但我很确定这不是正确的方法。

capture()如果网关设置为 authorize_capture,我认为 Magento 应该自动调用初始订单保存并没有错,对吧..?

4

3 回答 3

3

解决了!你需要这个:

protected $_isInitializeNeeded      = false;

我不知道为什么这是必要的,但在这一点上,我已经放弃了试图找出 magento 的原因,转而支持实际完成工作。我遇到了和你完全相同的问题,当我通过源代码跟踪它时,我发现当 isInitializeNeeded 返回 true 时,Payment.php 没有调用 _authorize。所以,在你的模型中坚持这条线,它就会起作用。

于 2012-11-19T15:20:10.967 回答
2

我认为该方法应该是:“authorize_capture”而不是“capture”,如配置中所述

<payment_action>authorize_capture</payment_action>

像那样:

public function authorize_capture(Varien_Object $payment, $amount)
{
    Mage::log('** Capturing **');
    // Third-party API stuff would go here, with exceptions being thrown if the gateway determines they've provided an invalid card, etc.
}

我有一个类似的问题,“授权”方法根本没有被触发,因为“authorize_action”是空的。我能够通过在方法本身中对其进行硬编码来解决这个问题。调用“getConfigPaymentAction”获取授权方法。

public function getConfigPaymentAction() {
    return 'authorize';
} 
于 2015-03-13T16:08:55.403 回答
0

好吧,我使用了一个观察者来手动调用捕获方法。
不是最优雅的解决方案,但效果很好。

于 2012-06-12T23:46:38.770 回答