From d68f04229891250bd6afaffd01300211ebdee302 Mon Sep 17 00:00:00 2001 From: chenbo <709206448@qq.com> Date: Thu, 29 Feb 2024 17:16:33 +0800 Subject: [PATCH] add --- .../CostConsultationReportController.php | 21 ++++++++++--------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/app/adminapi/controller/CostConsultationReportController.php b/app/adminapi/controller/CostConsultationReportController.php index fe4bd3c0c..295c0d943 100644 --- a/app/adminapi/controller/CostConsultationReportController.php +++ b/app/adminapi/controller/CostConsultationReportController.php @@ -93,16 +93,17 @@ class CostConsultationReportController extends BaseAdminController if ($project_name) { $query->where('p.project_name', 'like', '%'.$project_name.'%'); } - })->field('p.*')->append(['task_allocation_status', 'task_handling_three_level_review_status', 'data_reception_status']) ->withAttr('task_allocation_status', function ($data, $value){ - $count = TaskAllocation::where('cost_project_id', $value['id'])->count(); - return $count > 0 ? 1: 0; - })->withAttr('task_handling_three_level_review_status', function ($data, $value){ - $count = TaskHandlingThreeLevelReview::where('project_id', $value['id'])->count(); - return $count > 0 ? 1: 0; - })->withAttr('data_reception_status', function ($data, $value){ - $count = DataReception::where('project_id', $value['id'])->count(); - return $count > 0 ? 1: 0; - }); + })->append(['task_allocation_status', 'task_handling_three_level_review_status', 'data_reception_status']) + ->withAttr('task_allocation_status', function ($data, $value){ + $count = TaskAllocation::where('cost_project_id', $value['id'])->count(); + return $count > 0 ? 1: 0; + })->withAttr('task_handling_three_level_review_status', function ($data, $value){ + $count = TaskHandlingThreeLevelReview::where('project_id', $value['id'])->count(); + return $count > 0 ? 1: 0; + })->withAttr('data_reception_status', function ($data, $value){ + $count = DataReception::where('project_id', $value['id'])->count(); + return $count > 0 ? 1: 0; + }); $count = $query->count(); $lists = $query->page($page_no, $page_size)->select(); return $this->success('成功', compact('count', 'lists', 'page_no', 'page_size'));