可以通过订单ID检索订单信息(例如名称,价格等)吗?我想在结账/结账时复制确认表以结账/成功。
由于
答案 0 :(得分:5)
查看catalog/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