update 首单订单详情

This commit is contained in:
chenbo 2024-01-22 15:57:02 +08:00
parent 6753d7558a
commit fffcb10924
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ class UserController extends BaseApiController
$firstOrderLogList = Db::name('user_invite_first_order_log')->where('user_id', $this->userId)->page($page, $limit)->order('id', 'desc')->select()->toArray();
foreach ($firstOrderLogList as &$item) {
$item['order_info'] = Db::connect('mysql2')->name('store_order')->alias('o')->field('o.total_num,p.store_name,p.image')->leftJoin('store_order_product op', 'o.order_id=op.order_id')->leftJoin('store_product p', 'op.product_id = p.product_id')->where('o.order_sn', $item['order_no'])->find();
$item['order_info'] = Db::connect('mysql2')->name('store_order')->alias('o')->field('o.total_num,p.store_name,p.image,o.pay_price')->leftJoin('store_order_product op', 'o.order_id=op.order_id')->leftJoin('store_product p', 'op.product_id = p.product_id')->where('o.order_sn', $item['order_no'])->find();
$item['create_time'] = date('Y-m-d H:i:s', $item['create_time']);
}
$data = [