226 lines
9.0 KiB
PHP
226 lines
9.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\logic\supervision_work;
|
||
|
||
|
||
use app\common\model\auth\Admin;
|
||
use app\common\model\supervision_project\SupervisionParticipatingUnits;
|
||
use app\common\model\supervision_project\SupervisionProject;
|
||
use app\common\model\supervision_work\SupervisionCheckItem;
|
||
use app\common\model\supervision_work\SupervisionInspection;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\supervision_work\SupervisionInspectionProblem;
|
||
use app\common\model\supervision_work\SupervisionInspectionResult;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 工程监理--巡视登记逻辑
|
||
* Class SupervisionInspectionLogic
|
||
* @package app\adminapi\logic\supervision_work
|
||
*/
|
||
class SupervisionInspectionLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加工程监理--巡视登记
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public static function add(array $params,$admin_id): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$res = SupervisionInspection::create([
|
||
'project_id' => $params['project_id'],
|
||
'inspection_code' => data_unique_code('XS'),
|
||
'inspection_type' => $params['inspection_type'],
|
||
'check_item_id' => $params['check_item_id'],
|
||
'inspection_position' => $params['inspection_position'],
|
||
'workers' => $params['workers'],
|
||
'managers' => $params['managers'],
|
||
'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0,
|
||
'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0,
|
||
'inspection_user' => $params['inspection_user'],
|
||
'company_id' => $params['company_id'],
|
||
'inspection_content' => $params['inspection_content'],
|
||
'is_important' => $params['is_important'],
|
||
'follow_user' => $params['follow_user'],
|
||
'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null,
|
||
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
|
||
'create_user' => $admin_id,
|
||
]);
|
||
if(!empty($params['inspection_result'])){
|
||
foreach($params['inspection_result'] as $v){
|
||
SupervisionInspectionResult::create([
|
||
'inspection_id' => $res->id,
|
||
'check_type' => $v['check_type'],
|
||
'check_content' => $v['check_content'],
|
||
'must_check' => $v['must_check'],
|
||
'check_result' => $v['check_result']
|
||
]);
|
||
}
|
||
}
|
||
if(!empty($params['inspection_problem'])){
|
||
foreach($params['inspection_problem'] as $v){
|
||
SupervisionInspectionProblem::create([
|
||
'inspection_id' => $res->id,
|
||
'problem_cate' => $v['problem_cate'],
|
||
'problem_description' => $v['problem_description'],
|
||
'problem_name' => $v['problem_name'],
|
||
]);
|
||
}
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑工程监理--巡视登记
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
SupervisionInspection::where('id', $params['id'])->update([
|
||
'project_id' => $params['project_id'],
|
||
'inspection_type' => $params['inspection_type'],
|
||
'check_item_id' => $params['check_item_id'],
|
||
'inspection_position' => $params['inspection_position'],
|
||
'workers' => $params['workers'],
|
||
'managers' => $params['managers'],
|
||
'start_time' => !empty($params['start_time']) ? strtotime($params['start_time']) : 0,
|
||
'end_time' => !empty($params['end_time']) ? strtotime($params['end_time']) : 0,
|
||
'inspection_user' => $params['inspection_user'],
|
||
'company_id' => $params['company_id'],
|
||
'inspection_content' => $params['inspection_content'],
|
||
'is_important' => $params['is_important'],
|
||
'follow_user' => $params['follow_user'],
|
||
'check_item_detail_ids' => $params['check_item_detail_ids'] ? json_encode($params['check_item_detail_ids']) : null,
|
||
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
|
||
'update_time' => time(),
|
||
]);
|
||
if(!empty($params['inspection_result'])){
|
||
foreach($params['inspection_result'] as $v){
|
||
if(!empty($v['id'])){
|
||
SupervisionInspectionResult::where('id',$v['id'])->update([
|
||
'inspection_id' => $params['id'],
|
||
'check_type' => $v['check_type'],
|
||
'check_content' => $v['check_content'],
|
||
'must_check' => $v['must_check'],
|
||
'check_result' => $v['check_result'],
|
||
'update_time' => time(),
|
||
]);
|
||
}else{
|
||
SupervisionInspectionResult::create([
|
||
'inspection_id' => $params['id'],
|
||
'check_type' => $v['check_type'],
|
||
'check_content' => $v['check_content'],
|
||
'must_check' => $v['must_check'],
|
||
'check_result' => $v['check_result']
|
||
]);
|
||
}
|
||
}
|
||
}
|
||
if(!empty($params['inspection_problem'])){
|
||
foreach($params['inspection_problem'] as $v){
|
||
if(!empty($v['id'])){
|
||
SupervisionInspectionProblem::where('id',$v['id'])->update([
|
||
'inspection_id' => $params['id'],
|
||
'problem_cate' => $v['problem_cate'],
|
||
'problem_description' => $v['problem_description'],
|
||
'problem_name' => $v['problem_name'],
|
||
]);
|
||
}else{
|
||
SupervisionInspectionProblem::create([
|
||
'inspection_id' => $params['id'],
|
||
'problem_cate' => $v['problem_cate'],
|
||
'problem_description' => $v['problem_description'],
|
||
'problem_name' => $v['problem_name'],
|
||
]);
|
||
}
|
||
}
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除工程监理--巡视登记
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
$inspection_result = SupervisionInspectionResult::where('inspection_id',$params['id'])->findOrEmpty();
|
||
if(!$inspection_result->isEmpty()){
|
||
self::setError('该巡视内容下存在巡视结果数据,请先删除巡视结果数据');
|
||
return false;
|
||
}
|
||
$inspection_problem = SupervisionInspectionProblem::where('inspection_id',$params['id'])->findOrEmpty();
|
||
if(!$inspection_problem->isEmpty()){
|
||
self::setError('该巡视内容下存在巡视问题数据,请先删除巡视问题数据');
|
||
return false;
|
||
}
|
||
return SupervisionInspection::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取工程监理--巡视登记详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2024/02/26 17:18
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = SupervisionInspection::withoutField('update_time,delete_time')->findOrEmpty($params['id']);
|
||
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
|
||
$check_item = SupervisionCheckItem::field('node_name')->where('id',$data['check_item_id'])->findOrEmpty();
|
||
$company = SupervisionParticipatingUnits::field('unit_name')->where('id',$data['company_id'])->findOrEmpty();
|
||
$check_item_detail = SupervisionCheckItem::where('id','in',$data['check_item_detail_ids'])->column('node_name');
|
||
$create_user = Admin::field('name')->where('id',$data['create_user'])->findOrEmpty();
|
||
$data['project_name'] = $project['project_name'];
|
||
$data['check_item_name'] = $check_item['node_name'];
|
||
$data['company_name'] = $company['unit_name'];
|
||
$data['check_item_detail_name'] = implode(',',$check_item_detail);
|
||
$data['create_user_name'] = $create_user['name'];
|
||
$data['inspection_type_text'] = $data->inspection_type_text;
|
||
$data['is_important_text'] = $data->is_important_text;
|
||
return $data->toArray();
|
||
}
|
||
} |