This commit is contained in:
yaooo 2023-12-20 14:35:24 +08:00
commit fb475bb6da

View File

@ -61,6 +61,7 @@ class ProjectDocumentLists extends BaseAdminDataLists implements ListsSearchInte
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($item){
$item['annex'] = json_decode($item['annex'],true);
$project = Project::field('name,project_code')->where('id',$item['project_id'])->findOrEmpty();
$doc = ProjectDocumentSet::field('large_category,middle_category')->where('id',$item['classify_id'])->findOrEmpty();
$item['project_name'] = $project['name'];