['salary_payment_id'], ]; } /** * @notes 获取工资明细列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/12/27 16:12 */ public function lists(): array { $prarms = $this->request->get(['project_id','payment_code','project_name','project_code']); $where = []; if(isset($prarms['project_id']) && $prarms['project_id'] != ''){ $salary_payment_ids = ProjectSalaryPayment::where('project_id',$prarms['project_id'])->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['payment_code']) && $prarms['payment_code'] != ''){ $salary_payment_ids = ProjectSalaryPayment::where('payment_code','like','%'.$prarms['payment_code'].'%')->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['project_name']) && $prarms['project_name'] != ''){ $project_ids = Project::where('name','like','%'.$prarms['project_name'].'%')->column('id'); $salary_payment_ids = ProjectSalaryPayment::where('project_id','in',$project_ids)->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['project_code']) && $prarms['project_code'] != ''){ $project_ids = Project::where('name','like','%'.$prarms['project_code'].'%')->column('id'); $salary_payment_ids = ProjectSalaryPayment::where('project_id','in',$project_ids)->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } return ProjectSalaryDetail::where($this->searchWhere)->where($where) ->field(['id', 'salary_payment_id', 'person_id', 'apply_date', 'apply_amount', 'remark']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function($item){ $payment = ProjectSalaryPayment::field('payment_code,project_id')->where('id',$item['salary_payment_id'])->findOrEmpty(); $project = Project::field('name,project_code')->where('id',$payment['project_id'])->findOrEmpty(); $person = ProjectPersonnel::field('name,idcard,work_type')->where('id',$item['person_id'])->findOrEmpty(); $item['payment_code'] = $payment['payment_code']; $item['project_name'] = $project['name']; $item['project_code'] = $project['project_code']; $item['person_name'] = $person['name']; $item['person_idcard'] = $person['idcard']; $item['person_work_type_text'] = $person->work_type_text; //总考勤收入 $daily_income = ProjectAttendanceDetail::where('person_id',$item['person_id'])->sum('daily_income'); //总施工收入 $build_report_details = BuildReportDetail::field('report_id,work_num')->where('person_id',$item['person_id'])->select()->each(function($item2){ $report = BuildReport::field('plan_id')->where('id',$item2['report_id'])->findOrEmpty(); $plan = BuildPlan::field('price')->where('id',$report['plan_id'])->findOrEmpty(); $item2['amount'] = $item2['work_num'] * $plan['price']; })->toArray(); $work_income = 0; foreach($build_report_details as $v){ $work_income += $v['amount']; } $item['total_income'] = $daily_income + $work_income; //总支出 $item['total_pay_out'] = ProjectSalaryDetail::where('person_id',$item['person_id'])->sum('apply_amount'); $item['balance'] = $item['total_income'] - $item['total_pay_out']; }) ->toArray(); } /** * @notes 获取工资明细数量 * @return int * @author likeadmin * @date 2023/12/27 16:12 */ public function count(): int { $prarms = $this->request->get(['project_id','payment_code','project_name','project_code']); $where = []; if(isset($prarms['project_id']) && $prarms['project_id'] != ''){ $salary_payment_ids = ProjectSalaryPayment::where('project_id',$prarms['project_id'])->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['payment_code']) && $prarms['payment_code'] != ''){ $salary_payment_ids = ProjectSalaryPayment::where('payment_code','like','%'.$prarms['payment_code'].'%')->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['project_name']) && $prarms['project_name'] != ''){ $project_ids = Project::where('name','like','%'.$prarms['project_name'].'%')->column('id'); $salary_payment_ids = ProjectSalaryPayment::where('project_id','in',$project_ids)->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } if(isset($prarms['project_code']) && $prarms['project_code'] != ''){ $project_ids = Project::where('name','like','%'.$prarms['project_code'].'%')->column('id'); $salary_payment_ids = ProjectSalaryPayment::where('project_id','in',$project_ids)->column('id'); $where[] = ['salary_payment_id','in',$salary_payment_ids]; } return ProjectSalaryDetail::where($this->searchWhere)->where($where)->count(); } }