gpt4 book ai didi

magento - 从 Magento 中的订单 ID 获取订单号?

转载 作者:行者123 更新时间:2023-12-04 11:39:37 25 4
gpt4 key购买 nike

我正在使用以下代码从订单 ID 中获取订单号。

$orderId=64; //Order Id will be supplied dynamically

$order = Mage::getModel('sales/order')->load($orderId);

echo "Order Number is: ".$order['increment_id'];

我使用此代码获得正确的订单号,例如 100000067。

我想知道这是正确的使用方法。

请指导。

谢谢

最佳答案

这应该对你有用。

$orderId = 64;
$order = Mage::getModel('sales/order')->load($orderId);

echo $order->getIncrementId();

干杯!

关于magento - 从 Magento 中的订单 ID 获取订单号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17141813/

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