This commit is contained in:
weiz 2024-01-20 14:03:07 +08:00
parent 39adcb4517
commit 32d0e2fe7b

View File

@ -72,10 +72,12 @@ class ProjectLists extends BaseAdminDataLists implements ListsSearchInterface
$org = Orgs::field('name')->where('id',$item['org_id'])->findOrEmpty();
$dept = Dept::field('name')->where('id',$item['dept_id'])->findOrEmpty();
$projectType = ProjectTypeSet::where('id',$item['project_type'])->findOrEmpty();
$custom = Custom::field('name')->where('id',$item['custom_id'])->findOrEmpty();
$custom = Custom::field('name,master_name,master_phone')->where('id',$item['custom_id'])->findOrEmpty();
$item['org_name'] = $org['name'];
$item['dept_name'] = $dept['name'];
$item['custom_name'] = $custom['name'];
$item['custom_master_name'] = $custom['master_name'];
$item['custom_master_phone'] = $custom['master_phone'];
$item['project_type'] = $projectType['name'];
$item['status'] = $item->status_text;
$item['project_content'] = $item->project_content_text;