From ce8c2a854c564d43c69c10b036d91727b856b41b Mon Sep 17 00:00:00 2001 From: songliang Date: Wed, 12 Jul 2023 09:58:29 +0800 Subject: [PATCH] ... --- webapp/controller/ShopController.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/controller/ShopController.class.php b/webapp/controller/ShopController.class.php index 98f02ff9..5ab561a9 100644 --- a/webapp/controller/ShopController.class.php +++ b/webapp/controller/ShopController.class.php @@ -509,14 +509,14 @@ class ShopController extends BaseAuthedController $this->_rspErr(2, "product_id is empty"); return; } - + // $goods = mt\ShopGoods::getByProductId($product_id); return; } $order = SqlHelper::selectOne($conn, 't_web2_order', array('address', 'id', 'item_id', 'goods_num', 'status'), array('order_id' => $order_id, 'status' => 0)); - error_log('process order '. json_encode($order)); + error_log('process order ' . json_encode($order)); if (!$order) { $this->_rspErr(3, "order not found, order_id: {$order_id}"); return;