- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以看到捕获已成功处理:
但随后在“交易”屏幕上,“已关闭”列在捕获旁边说“不”。我想我只是不明白这个专栏的作用。有人可以帮我解释一下吗?
最佳答案
信用卡支付交易流程的一些背景知识有助于理解这一点。这些是交易生命周期的基本流程操作:
Authorize (AUTH_ONLY):
Run the card for a given amount and obtain a unique authorization code. The amount will be put on hold and you are guaranteed these funds as long as you use the authorization code in a Capture transaction within 30 days. (How long before an authorization code expires varies by company. Check with your payment gateway)
Customers don't see the authorization as a charge on their statement, but they will see their available funds decrease by the amount you ran the authorization for.
If you don't use the authorization code in a follow-up Capture transaction, the authorization is "dropped", funds returned to the customer's balance and you can no longer use it.
Capture (PRIOR_AUTH_CAPTURE):
Use a previously obtained authorization code to complete the transaction.
The amount captured can be lower than the originally obtained authorization amount (this is useful in cases like our example where you don't know the total order amount ahead of time).
Settlement: This is the process merchants must complete ... to be paid for their transactions.
The product or service must be delivered or performed before settlement can take place. In the case of mail order/telephone order, this specifically means the goods must be shipped before the settlement process is performed.
is_closed
标志表示交易已结算,不能对其执行其他操作。交易在结算前保持开放状态的原因是,您可以分批装运 cargo (多次进货),以及取消交易或退款。
Mage_Authorizenet_Model_Directpost
例如,
capture()
操作使当前事务保持打开状态,而
void()
和
_refund()
操作关闭它。
关于magento - magento的事务区 "IS CLOSED"列的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24494648/
我是一名优秀的程序员,十分优秀!