gpt4 book ai didi

magento - 通过预留订单id获取报价

转载 作者:行者123 更新时间:2023-12-02 18:55:05 25 4
gpt4 key购买 nike

我想创建一种新的付款方式。结账过程中付款方式重定向至第 3 方服务。我将预留订单 ID 传递给第 3 方服务,它会在付款成功时返回此 ID。如何通过reservedOrderId获取报价?或者我需要在重定向到第 3 方服务之前将报价转换为订单吗?

最佳答案

由于预留的订单应该是唯一的,您可以尝试以下操作:

$quote = Mage::getModel('sales/quote')->getCollection()
->addFieldToFilter('reserved_order_id', 'Your Order id')
->getFirstItem();

if ($quote->getId()) {
//quote was found - $quote
}
else {
//the quote does not exist.
}

关于magento - 通过预留订单id获取报价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26589021/

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