add
This commit is contained in:
parent
0830b5d352
commit
d68f042298
@ -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'));
|
||||
|
Loading…
x
Reference in New Issue
Block a user