gpt4 book ai didi

php - magento 中的自动发票

转载 作者:可可西里 更新时间:2023-10-31 22:59:10 26 4
gpt4 key购买 nike

我创建了新的自定义产品类型,它扩展了 magento 中的虚拟产品。现在我想阻止在线支付的自动发票,例如。 paypal 当订单包含至少一种自定义产品类型时。此类产品的所有订单都必须手动开具发票。我该如何解决?

最佳答案

最好的方法是注册一个观察者到支付捕获过程中抛出的事件,但遗憾的是我没有看到太多相关的方法。您可以尝试 sales_order_invoice_save_before 拦截 save(),但我不喜欢这样做,因为它可能会使 Controller 混淆发票保存失败的原因。

查看 Paypal 代码,您会在 Mage_Paypal_Model_Ipn::_processOrder() 中看到它在成功时调用 $this->_registerPaymentCapture(),后者又调用$payment->registerCaptureNotification()

Mage_Sales_Model_Order_Payment::registerCaptureNotification($amount) 创建一个新发票(如果发票尚不存在且付款是订单的全额)。它使用 _isCaptureFinal($amount) 方法来验证这一点。

一种选择是扩展 Mage_Sales_Model_Order_Payment 并使用以下代码覆盖 _isCaptureFinal($amount):

foreach($this->getOrder()->getAllItems() as $oOrderItem){
if($oOrderItem()->getProduct()->getTypeId() == 'your_custom_product_type'){
return false;
}
}
return parent::_isCaptureFinal($amountToCapture);

别忘了给家长最后的电话!!

您可以在自定义模块中执行所有这些操作(如果需要,可以从 ModuleCreator 开始),然后将以下内容插入到 config.xml 中

<global>
<models>
<modulename>
<class>Namespace_Modulename_Model</class>
</modulename>
<sales>
<rewrite>
<order_payment>Namespace_Modulename_Model_Order_Payment</order_payment>
</rewrite>
</sales>
</models>

标准免责声明适用,您在这里扰乱了资金交易,因此请确保您对其进行了真实彻底的测试。

请注意,此方法将适用于调用 Mage_Sales_Model_Order_Payment::registerCaptureNotification($amount) 的所有付款方式,而不仅仅是 Paypal。

祝你好运,
京东

关于php - magento 中的自动发票,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5017421/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com