This commit is contained in:
weiz 2024-02-19 10:57:48 +08:00
parent 3ad1cd2bb0
commit 2e97359fde

View File

@ -132,6 +132,8 @@ class FlowApproveLogic extends BaseLogic
} }
//获取当前审批信息的审批步骤 //获取当前审批信息的审批步骤
$current_step = FlowStep::where('approve_id',$params['id'])->where('is_active',1)->findOrEmpty(); $current_step = FlowStep::where('approve_id',$params['id'])->where('is_active',1)->findOrEmpty();
//获取下一步步骤
$next_step = FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->findOrEmpty();
$current_check_user = explode(',',$current_step['flow_user']); $current_check_user = explode(',',$current_step['flow_user']);
//获取当前审批信息的步骤总数 //获取当前审批信息的步骤总数
$step_count = FlowStep::where('approve_id',$params['id'])->count(); $step_count = FlowStep::where('approve_id',$params['id'])->count();
@ -155,10 +157,7 @@ class FlowApproveLogic extends BaseLogic
//判断当前审批步骤类型 //判断当前审批步骤类型
switch($current_step['flow_step']){ switch($current_step['flow_step']){
case 1://当前部门负责人审批 case 1://当前部门负责人审批
//判断当前审核步骤是否是最后一步; if($next_step->isEmpty()){
//1、如果是最后一步如果当前用户审核通过则将该记录设置为审核通过如果当前用户未审核通过则则将该记录设置为审核不通过流程结束
//2、如果不是最后一步如果当前用户审核通过则将该记录设置为审核中流程进入下一步如果当前用户未审核通过则则将该记录设置为审核不通过流程结束
if(($current_step['sort']+1) == $step_count){
FlowApprove::where('id',$params['id'])->update([ FlowApprove::where('id',$params['id'])->update([
'check_status' => $params['check_status'] == 1 ? 2 : 3, 'check_status' => $params['check_status'] == 1 ? 2 : 3,
'update_time' => $check_time, 'update_time' => $check_time,
@ -171,52 +170,31 @@ class FlowApproveLogic extends BaseLogic
//设置下一步 //设置下一步
if($params['check_status'] == 1){ if($params['check_status'] == 1){
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]); FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->update(['is_active'=>1]); FlowStep::where('id',$next_step['id'])->update(['is_active'=>1]);
} }
} }
break; break;
case 2: //指定人或签 case 2: //指定人或签
//判断当前记录除当前用户外,是否都审批了, //判断当前审核状态
//1、如果都审批了则判断其他用户是否有审批通过的 if($params['check_status'] == 1){
//1-1、如果其他用户都没有审批通过则判断当前用户是否审批通过通过如果当前用户审批通过则判断当前审核步骤是否是最后一步 $approve_check_status = $next_step->isEmpty() ? 2 : 1;
//1-1-1-1、如果是最后一步则该记录审批通过流程结束 if(!$next_step->isEmpty()){
//1-1-1-2、如果不是最后一步则该记录设置为审批中流程设置为下一步 FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
//1-1-2、如果当前用户审批不通过则该记录审批不通过流程结束 FlowStep::where('id',$next_step['id'])->update(['is_active'=>1]);
//1-2、如果其他用户有一位审批通过则不管当前用户是否审批通过则判断当前审核步骤是否是最后一步如果是最后一步该记录设置为审核通过如果不是最后一步该记录设置为审核中流程设置为下一步
//2、如果没审批完则不管当前用户是否审批通过也不管当前审核步骤是否是最后一步该记录都设置为审批中不设置下一步操作
//获取当前记录的审核记录数
$check_record_count = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('is_invalid',0)->where('status','<>',0)->count();
//获取但前记录的已经通过的记录
$check_record_pass = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('status',1)->where('is_invalid',0)->findOrEmpty();
//判断当前记录除当前用户外,是否都审批了,
if(count($current_check_user)-1 == $check_record_count){
//判断有没有审核通过的
if($check_record_pass->isEmpty()){//没有审核通过的
if($params['check_status'] == 1){
if(($current_step['sort']+1) == $step_count){
$approve_check_status = 2;
}else{
$approve_check_status = 1;
//设置下一步
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->update(['is_active'=>1]);
}
}else{
$approve_check_status = 3;
}
}else{//有审核通过的
if(($current_step['sort']+1) == $step_count){
$approve_check_status = 2;
}else{
$approve_check_status = 1;
//设置下一步
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->update(['is_active'=>1]);
}
} }
}else{ }else{
//没审批完,该记录都设置为审批中 //获取当前记录的审核记录数
$approve_check_status = 1; $check_record_count = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('is_invalid',0)->where('status','<>',0)->count();
//判断当前记录除当前用户外,是否都审批了
if(count($current_check_user)-1 == $check_record_count){
$approve_check_status = 3;
if(!$next_step->isEmpty()){
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('id',$next_step['id'])->update(['is_active'=>1]);
}
}else{
$approve_check_status = 1;
}
} }
FlowApprove::where('id',$params['id'])->update([ FlowApprove::where('id',$params['id'])->update([
'check_status' => $approve_check_status, 'check_status' => $approve_check_status,
@ -224,40 +202,21 @@ class FlowApproveLogic extends BaseLogic
]); ]);
break; break;
case 3: //指定人会签 case 3: //指定人会签
//判断当前记录除当前用户外,是否都审批了, if($params['check_status'] == 2){
//1、如果都审批了则判断其他用户是否有未审批通过的 $approve_check_status = 3;
//1-1、如果其他用户都审批通过则判断当前用户是否审批通过通过如果当前用户审批通过则判断当前审核步骤是否是最后一步
//1-1-1-1、如果是最后一步则该记录审批通过流程结束
//1-1-1-2、如果不是最后一步则该记录设置为审批中流程设置为下一步
//1-1-2、如果当前用户审批不通过则该记录审批不通过流程结束
//1-2、如果其他用户有一位审批不通过则不管当前用户是否审批通过该记录设置为审核不通过流程结束
//2、如果没审批完则判断当前用户是否审批通过如果当前用户审批通过则将记录设置为审批中如果当前用户审批不通过则将记录设置为审批不通过
//获取当前记录的审核记录数
$check_record_count = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('is_invalid',0)->where('status','<>',0)->count();
//获取但前记录的未通过的记录
$check_record_not_pass = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('status',2)->where('is_invalid',0)->findOrEmpty();
//判断当前记录除当前用户外,是否都审批了,
if(count($current_check_user)-1 == $check_record_count){
//判断有没有审核不通过的
if($check_record_not_pass->isEmpty()){//没有审核不通过的
if($params['check_status'] == 1){
if(($current_step['sort']+1) == $step_count){
$approve_check_status = 2;
}else{
$approve_check_status = 1;
//设置下一步
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->update(['is_active'=>1]);
}
}else{
$approve_check_status = 3;
}
}else{//有审核不通过的
$approve_check_status = 3;
}
}else{ }else{
//没审批完,则判断当前用户是否审批通过,如果当前用户审批通过,则将记录设置为审批中,如果当前用户审批不通过,则将记录设置为审批不通过 //获取当前记录的审核记录数
$approve_check_status = $params['check_status'] == 1 ? 1 : 3; $check_record_count = FlowRecord::where('approve_id',$params['id'])->where('step_id',$current_step['id'])->where('is_invalid',0)->where('status','<>',0)->count();
//判断当前记录除当前用户外,是否都审批了,
if(count($current_check_user)-1 == $check_record_count){
$approve_check_status = 2;
if(!$next_step->isEmpty()){
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('id',$next_step['id'])->update(['is_active'=>1]);
}
}else{
$approve_check_status = 1;
}
} }
FlowApprove::where('id',$params['id'])->update([ FlowApprove::where('id',$params['id'])->update([
'check_status' => $approve_check_status, 'check_status' => $approve_check_status,
@ -266,7 +225,7 @@ class FlowApproveLogic extends BaseLogic
break; break;
} }
}else{ }else{
if(($current_step['sort']+1) == $step_count){ if($next_step->isEmpty()){
FlowApprove::where('id',$params['id'])->update([ FlowApprove::where('id',$params['id'])->update([
'check_status' => $params['check_status'] == 1 ? 2 : 3, 'check_status' => $params['check_status'] == 1 ? 2 : 3,
'update_time' => $check_time, 'update_time' => $check_time,
@ -279,7 +238,7 @@ class FlowApproveLogic extends BaseLogic
//设置下一步 //设置下一步
if($params['check_status'] == 1){ if($params['check_status'] == 1){
FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]); FlowStep::where('id',$current_step['id'])->update(['is_active'=>0]);
FlowStep::where('approve_id',$params['id'])->where('sort',$current_step['sort']+1)->update(['is_active'=>1]); FlowStep::where('id',$next_step['id'])->update(['is_active'=>1]);
} }
} }
} }