From 33cbf5baa263527d9f41c556599a385105d4c68f Mon Sep 17 00:00:00 2001 From: ctexthuang Date: Tue, 1 Apr 2025 14:59:53 +0800 Subject: [PATCH] feat : check --- app/Service/Admin/Catering/Meal/CheckService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Service/Admin/Catering/Meal/CheckService.php b/app/Service/Admin/Catering/Meal/CheckService.php index 96ac366..837457b 100644 --- a/app/Service/Admin/Catering/Meal/CheckService.php +++ b/app/Service/Admin/Catering/Meal/CheckService.php @@ -65,7 +65,7 @@ class CheckService extends CateringBaseService ->where('cycle_id', $this->cycleId) ->where('type',OrderCode::ORDER_TYPE_MEAL) ->where('status',OrderCode::PAYED) - ->pluck('order_id') + ->pluck('id') ->toArray(); if (empty($orderIds)) throw new ErrException('数据错误');