所以,万岁 - 我正在尝试创建一个新的自定义支付网关。它旨在通过第三方 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 应该自动调用初始订单保存并没有错,对吧..?