是否有可能获取最后一个订单 ID 到订单成功页面。?我只想获取最后一个订单ID,所以我可以设置一个指向我的模板文件的链接,success.tpl
该链接将转到最后一个订单信息页面。我尝试过一些来自controller/checkout/success.php
$this->load->model('checkout/order');
$order_last_id = $this->db->getLastId();
$this->data['order_info'] = $this->url->link('account/order/info', 'order_id=' . $order_last_id, 'SSL');
但是,运气不好,我得到了带有0
订单 ID的网址
index.php?route=account/order/info&order_id=0
任何人都可以帮我获得最后一个订单ID。?
谢谢...