['contract_status', 'project_id', 'contract_type', 'contract_title'], ]; } /** * @notes 获取劳动合同列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/12/25 14:35 */ public function lists(): array { return ProjectLaborContract::where($this->searchWhere) ->field(['id', 'project_id', 'project_person_id', 'contract_status', 'contract_type', 'contract_title', 'signing_date', 'trial_start_date', 'trial_end_date', 'start_date', 'end_date', 'release_time', 'release_reason', 'remark', 'annex']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function($item){ $item['contract_status_text'] = $item->contract_status_text; $item['contract_type_text'] = $item->contract_type_text; $item['contract_title_text'] = $item->contract_title_text; $project = Project::field('name,project_code')->where('id',$item['project_id'])->findOrEmpty(); $person = ProjectPersonnel::field('name,idcard')->where('id',$item['project_person_id'])->findOrEmpty(); $item['project_name'] = $project['name']; $item['project_code'] = $project['project_code']; $item['person_name'] = $person['name']; $item['person_idcard'] = $person['idcard']; return $item; }) ->toArray(); } /** * @notes 获取劳动合同数量 * @return int * @author likeadmin * @date 2023/12/25 14:35 */ public function count(): int { return ProjectLaborContract::where($this->searchWhere)->count(); } }