135 lines
4.7 KiB
PHP
135 lines
4.7 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\finance;
|
||
|
||
|
||
use app\adminapi\lists\BaseAdminDataLists;
|
||
use app\common\lists\ListsExcelInterface;
|
||
use app\common\model\bank\BankAccount;
|
||
use app\common\model\contract\Contract;
|
||
use app\common\model\custom\Custom;
|
||
use app\common\model\finance\FinanceRefundApply;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\project\Project;
|
||
|
||
|
||
/**
|
||
* FinanceRefundApply列表
|
||
* Class FinanceRefundApplyLists
|
||
* @package app\adminapi\listsfinance
|
||
*/
|
||
class FinanceRefundApplyLists extends BaseAdminDataLists implements ListsSearchInterface,ListsExcelInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2023/12/14 16:58
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'=' => ['project_id', 'contract_id', 'refund_type'],
|
||
'%like%' => ['refund_user']
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2023/12/14 16:58
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
$params = $this->request->get(['custom_id']);
|
||
$where = [];
|
||
if(isset($params['custom_id']) && $params['custom_id'] != ''){
|
||
$project_ids = Project::where('custom_id',$params['custom_id'])->column('id');
|
||
$where[] = ['project_id','in',$project_ids];
|
||
}
|
||
return FinanceRefundApply::where($this->searchWhere)->where($where)
|
||
->field('id,refund_code,project_id,contract_id,refund_date,reason,amount,refund_type,refund_user,remark,collection_bank,collection_account,bank_account_id')
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()->each(function($data){
|
||
$project = Project::field('custom_id,name,project_code')->where('id',$data['project_id'])->findOrEmpty();
|
||
$custom = Custom::field('name')->where('id',$project['custom_id'])->findOrEmpty();
|
||
$contract = Contract::field('contract_name,contract_code')->where('id',$data['contract_id'])->findOrEmpty();
|
||
$data['project_name'] = $project['name'];
|
||
$data['project_code'] = $project['project_code'];
|
||
$data['custom_name'] = $custom['name'];
|
||
$data['contract_name'] = $contract['contract_name'];
|
||
$data['contract_code'] = $contract['contract_code'];
|
||
$data['refund_type'] = $data->refund_type_text;
|
||
$data['bank_account_info'] = BankAccount::field('account_sn,deposit_bank,account_name,account')->where('id',$data['bank_account_id'])->findOrEmpty();
|
||
return $data;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2023/12/14 16:58
|
||
*/
|
||
public function count(): int
|
||
{
|
||
$params = $this->request->get(['custom_id']);
|
||
$where = [];
|
||
if(isset($params['custom_id']) && $params['custom_id'] != ''){
|
||
$project_ids = Project::where('custom_id',$params['custom_id'])->column('id');
|
||
$where[] = ['project_id','in',$project_ids];
|
||
}
|
||
return FinanceRefundApply::where($this->searchWhere)->where($where)->count();
|
||
}
|
||
|
||
public function setFileName(): string
|
||
{
|
||
return '退款申请列表';
|
||
}
|
||
|
||
/**
|
||
* @notes 导出字段
|
||
* @return string[]
|
||
* @author 段誉
|
||
* @date 2022/11/24 16:17
|
||
*/
|
||
public function setExcelFields(): array
|
||
{
|
||
return [
|
||
"id" => "id",
|
||
"refund_code" => "退款单号",
|
||
"custom_name" => "客户名称",
|
||
"project_name" => "项目名称",
|
||
"contract_code" => "合同编号",
|
||
"reason" => "退款原因",
|
||
"refund_date" => "退款日期",
|
||
"amount" => "退款金额",
|
||
"refund_type" => "退款方式",
|
||
"refund_user" => "退款人",
|
||
"remark" => "备注",
|
||
];
|
||
}
|
||
|
||
} |