编程语言
首页 > 编程语言> > php – 在Opencart Cms中通过id获取订单信息

php – 在Opencart Cms中通过id获取订单信息

作者:互联网

可以通过订单ID检索订单信息(例如名称,价格等)吗?我想在结账/结账时复制确认表以结账/成功.

谢谢

解决方法:

查看目录/ model / checkout / order.php订单模型,您将找到一个方法getOrder()接受强制参数$order_id.

所以,是的,可以通过它的ID来获取订单数据,只需在控制器中的某个位置调用此行即可:

$this->load->model('checkout/order'); // call this only if this model is not yet instantiated!
$this->model_checkout_order->getOrder($orderId); // use the desired $orderId here

标签:opencart,php,e-commerce
来源: https://codeday.me/bug/20190830/1769860.html