From 7469bd3fe50e5610422700f4d49858af2f41703e Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Mon, 3 Feb 2025 14:35:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(api):=20=E4=BF=AE=E6=AD=A3=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E8=AE=A2=E5=8D=95=E6=80=BB=E9=87=91=E9=A2=9D=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 BeforehandOrder::where('id', $params['id']) 修改为 BeforehandOrder::where('id', $outbound_id') - 此修改确保了更新订单总金额时使用正确的订单 ID --- app/api/logic/DemoLogic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/logic/DemoLogic.php b/app/api/logic/DemoLogic.php index 30a6f092..57478c09 100644 --- a/app/api/logic/DemoLogic.php +++ b/app/api/logic/DemoLogic.php @@ -154,7 +154,7 @@ class DemoLogic extends BaseLogic } }); $total_price=WarehouseProduct::where('oid', $outbound_id)->sum('total_price'); - BeforehandOrder::where('id', $params['id'])->update(['total_price' => $total_price]); + BeforehandOrder::where('id', $outbound_id)->update(['total_price' => $total_price]); } }