engineering/app/adminapi/lists/project/ProjectExpenseReimbursementLists.php
2024-01-30 18:01:46 +08:00

123 lines
4.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\project\Project;
use app\common\model\project\ProjectExpenseReimbursement;
use app\common\lists\ListsSearchInterface;
use app\common\model\project\ProjectExpenseReimbursementDetail;
use app\common\model\project\ProjectLoanApply;
/**
* 费用报销列表
* Class ProjectExpenseReimbursementLists
* @package app\adminapi\listsproject
*/
class ProjectExpenseReimbursementLists extends BaseAdminDataLists implements ListsSearchInterface,ListsExcelInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/01/19 13:44
*/
public function setSearch(): array
{
return [
'=' => ['project_id', 'reimbursement_type'],
'%like%' => ['expense_reimbursement_code', 'apply_user', 'payee_name'],
];
}
/**
* @notes 获取费用报销列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/01/19 13:44
*/
public function lists(): array
{
return ProjectExpenseReimbursement::where($this->searchWhere)
->field('id,expense_reimbursement_code,project_id,apply_user,apply_date,reimbursement_type,loan_apply_id,offset_loan_amount,remark')
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$project = Project::field('name,project_code')->where('id',$data['project_id'])->findOrEmpty();
$loan_apply = ProjectLoanApply::field('loan_apply_code,loan_amount')->where('id',$data['loan_apply_id'])->findOrEmpty();
$data['project_name'] = $project['name'];
$data['project_code'] = $project['project_code'];
$data['loan_apply_code'] = !$loan_apply->isEmpty() ? $loan_apply['loan_apply_code'] : '---';
$data['loan_amount'] = !$loan_apply->isEmpty() ? $loan_apply['loan_amount'] : '---';
$data['total_amount'] = ProjectExpenseReimbursementDetail::where('expense_reimbursement_id',$data['id'])->sum('amount');
$data['pay_amount'] = $data['total_amount'] - $data['offset_loan_amount'];
$data['reimbursement_type'] = $data->reimbursement_type_text;
unset($data['project_id'],$data['loan_apply_id']);
return $data;
})
->toArray();
}
/**
* @notes 获取费用报销数量
* @return int
* @author likeadmin
* @date 2024/01/19 13:44
*/
public function count(): int
{
return ProjectExpenseReimbursement::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",
"expense_reimbursement_code" => "费用报销单号",
"project_name" => "项目名称",
"apply_user" => "报销人",
"apply_date" => "报销日期",
"reimbursement_type" => "报销类型",
"loan_apply_code" => "借款单编号",
"loan_amount" => "借款金额",
"total_amount" => "报销金额",
"pay_amount" => "付款金额",
"offset_loan_amount" => "本次冲抵借款金额",
"remark" => "备注",
];
}
}