136 lines
5.0 KiB
PHP
136 lines
5.0 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\lists\project;
|
||
|
||
|
||
use app\adminapi\lists\BaseAdminDataLists;
|
||
use app\common\lists\ListsExcelInterface;
|
||
use app\common\model\auth\Admin;
|
||
use app\common\model\project\Project;
|
||
use app\common\model\project\ProjectLoanApply;
|
||
use app\common\model\project\ProjectManagerAppointment;
|
||
use app\common\model\project\ProjectTravelReimbursement;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\project\ProjectTravelReimbursementDetail;
|
||
use app\common\model\project\ProjectTripApply;
|
||
|
||
|
||
/**
|
||
* 差旅报销列表
|
||
* Class ProjectTravelReimbursementLists
|
||
* @package app\adminapi\listsproject
|
||
*/
|
||
class ProjectTravelReimbursementLists extends BaseAdminDataLists implements ListsSearchInterface,ListsExcelInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2024/01/18 13:57
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'=' => ['trip_apply_id', 'project_id', 'reimbursement_type'],
|
||
'%like%' => ['trip_reimbursement_code','apply_user'],
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取差旅报销列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2024/01/18 13:57
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
$field = 'id,trip_apply_id,project_id,trip_reimbursement_code,reimbursement_type,loan_apply_id,offset_loan_amount,apply_user,apply_date,remark';
|
||
return ProjectTravelReimbursement::where($this->searchWhere)
|
||
->field($field)
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()->each(function($data){
|
||
$trip_apply = ProjectTripApply::field('trip_apply_code')->where('id',$data['trip_apply_id'])->findOrEmpty();
|
||
$project = Project::field('name,project_code')->where('id',$data['project_id'])->findOrEmpty();
|
||
$manager = ProjectManagerAppointment::field('project_manager')->where('project_id',$data['project_id'])->findOrEmpty();
|
||
$loan_apply = ProjectLoanApply::field('loan_apply_code,loan_amount')->where('id',$data['loan_apply_id'])->findOrEmpty();
|
||
$data['trip_apply_code'] = $trip_apply['trip_apply_code'];
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
if($manager->isEmpty()){
|
||
$data['project_manager'] = '';
|
||
}else{
|
||
$admin = Admin::field('name')->where('id',$manager['project_manager'])->findOrEmpty();
|
||
$data['project_manager'] = $admin['name'];
|
||
}
|
||
$data['loan_apply_code'] = !$loan_apply->isEmpty() ? $loan_apply['loan_apply_code'] : '---';
|
||
$data['loan_amount'] = !$loan_apply->isEmpty() ? $loan_apply['loan_amount'] : '---';
|
||
$data['reimbursement_type'] = $data->reimbursement_type_text;
|
||
unset($data['trip_apply_id'],$data['loan_apply_id']);
|
||
$data['total_amount'] = ProjectTravelReimbursementDetail::where('travel_reimbursement_id',$data['id'])->sum('total_amount');
|
||
$data['pay_amount'] = $data['total_amount'] - $data['offset_loan_amount'];
|
||
return $data;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取差旅报销数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2024/01/18 13:57
|
||
*/
|
||
public function count(): int
|
||
{
|
||
return ProjectTravelReimbursement::where($this->searchWhere)->count();
|
||
}
|
||
|
||
public function setFileName(): string
|
||
{
|
||
return '差旅报销列表';
|
||
}
|
||
|
||
/**
|
||
* @notes 导出字段
|
||
* @return string[]
|
||
* @author 段誉
|
||
* @date 2022/11/24 16:17
|
||
*/
|
||
public function setExcelFields(): array
|
||
{
|
||
return [
|
||
"id" => "id",
|
||
"trip_reimbursement_code" => "出差申请单编号",
|
||
"project_name" => "项目名称",
|
||
"reimbursement_type" => "报销类型",
|
||
"loan_apply_code" => "借款单编号",
|
||
"loan_amount" => "借款金额",
|
||
"total_amount" => "报销金额",
|
||
"offset_loan_amount" => "冲抵借款金额",
|
||
"pay_amount" => "付款金额",
|
||
"apply_user" => "报销人",
|
||
"apply_date" => "报销日期",
|
||
"remark" => "备注",
|
||
];
|
||
}
|
||
|
||
} |