97 lines
3.0 KiB
PHP
97 lines
3.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\oa\lists\works\bgsp;
|
||
|
||
|
||
use app\oa\lists\BaseAdminDataLists;
|
||
use app\common\model\auth\Admin;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\works\bgsp\OaFlow;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\works\bgsp\OaFlowType;
|
||
|
||
|
||
/**
|
||
* 审批流程列表
|
||
* Class OaFlowLists
|
||
* @package app\adminapi\listsworks\bgsp
|
||
*/
|
||
class OaFlowLists extends BaseAdminDataLists implements ListsSearchInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2024/05/24 14:16
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'=' => ['check_type', 'type','flow_cate'],
|
||
'%like%' => ['name'],
|
||
];
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取审批流程列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2024/05/24 14:16
|
||
*/
|
||
public function lists(): array
|
||
{
|
||
return OaFlow::where($this->searchWhere)
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()->each(function($data){
|
||
$data['type_text'] = $data->type_text;
|
||
$data['check_type_text'] = $data->check_type_text;
|
||
$flow_cate = OaFlowType::where('id',$data['flow_cate'])->findOrEmpty();
|
||
$data['flow_cate_name'] = $flow_cate['title'];
|
||
if(!empty($data['department_ids'])){
|
||
$dept = Dept::where('id','in',$data['department_ids'])->column('name');
|
||
$data['department_names'] = implode(',',$dept);
|
||
}else{
|
||
$data['department_names'] = '全公司';
|
||
}
|
||
if(!empty($data['copy_uids'])){
|
||
$copy_user = Admin::where('id','in',$data['copy_uids'])->column('name');
|
||
$data['copy_user_names'] = implode(',',$copy_user);
|
||
}else{
|
||
$data['copy_user_names'] = '';
|
||
}
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取审批流程数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2024/05/24 14:16
|
||
*/
|
||
public function count(): int
|
||
{
|
||
return OaFlow::where($this->searchWhere)->count();
|
||
}
|
||
|
||
} |