新增巡视内容

This commit is contained in:
weiz 2024-02-27 11:37:58 +08:00
parent 91b6171966
commit 557ddadcac
25 changed files with 2668 additions and 0 deletions

View File

@ -0,0 +1,108 @@
<?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\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionCheckItemLists;
use app\adminapi\logic\supervision_work\SupervisionCheckItemLogic;
use app\adminapi\validate\supervision_work\SupervisionCheckItemValidate;
/**
* 工程监理--新增检查项控制器
* Class SupervisionCheckItemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionCheckItemController extends BaseAdminController
{
/**
* @notes 获取工程监理--新增检查项列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists()
{
return $this->dataLists(new SupervisionCheckItemLists());
}
/**
* @notes 添加工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function add()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('add');
$result = SupervisionCheckItemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemLogic::getError());
}
/**
* @notes 编辑工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function edit()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('edit');
$result = SupervisionCheckItemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemLogic::getError());
}
/**
* @notes 删除工程监理--新增检查项
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function delete()
{
$params = (new SupervisionCheckItemValidate())->post()->goCheck('delete');
SupervisionCheckItemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--新增检查项详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function detail()
{
$params = (new SupervisionCheckItemValidate())->goCheck('detail');
$result = SupervisionCheckItemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?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\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionCheckItemDetailLists;
use app\adminapi\logic\supervision_work\SupervisionCheckItemDetailLogic;
use app\adminapi\validate\supervision_work\SupervisionCheckItemDetailValidate;
/**
* 工程监理--新增检查项明细控制器
* Class SupervisionCheckItemDetailController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionCheckItemDetailController extends BaseAdminController
{
/**
* @notes 获取工程监理--新增检查项明细列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists()
{
return $this->dataLists(new SupervisionCheckItemDetailLists());
}
/**
* @notes 添加工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function add()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('add');
$result = SupervisionCheckItemDetailLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemDetailLogic::getError());
}
/**
* @notes 编辑工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function edit()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('edit');
$result = SupervisionCheckItemDetailLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionCheckItemDetailLogic::getError());
}
/**
* @notes 删除工程监理--新增检查项明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function delete()
{
$params = (new SupervisionCheckItemDetailValidate())->post()->goCheck('delete');
SupervisionCheckItemDetailLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--新增检查项明细详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function detail()
{
$params = (new SupervisionCheckItemDetailValidate())->goCheck('detail');
$result = SupervisionCheckItemDetailLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?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\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionValidate;
/**
* 工程监理--巡视登记控制器
* Class SupervisionInspectionController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视登记列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionLists());
}
/**
* @notes 添加工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function add()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('add');
$result = SupervisionInspectionLogic::add($params,$this->adminId);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionLogic::getError());
}
/**
* @notes 编辑工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function edit()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('edit');
$result = SupervisionInspectionLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionLogic::getError());
}
/**
* @notes 删除工程监理--巡视登记
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function delete()
{
$params = (new SupervisionInspectionValidate())->post()->goCheck('delete');
SupervisionInspectionLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视登记详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function detail()
{
$params = (new SupervisionInspectionValidate())->goCheck('detail');
$result = SupervisionInspectionLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?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\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionProblemLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionProblemLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionProblemValidate;
/**
* 工程监理--巡视问题控制器
* Class SupervisionInspectionProblemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionProblemController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视问题列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionProblemLists());
}
/**
* @notes 添加工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function add()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('add');
$result = SupervisionInspectionProblemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 编辑工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function edit()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('edit');
$result = SupervisionInspectionProblemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 删除工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function delete()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('delete');
SupervisionInspectionProblemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视问题详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function detail()
{
$params = (new SupervisionInspectionProblemValidate())->goCheck('detail');
$result = SupervisionInspectionProblemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,108 @@
<?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\controller\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionResultLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionResultLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionResultValidate;
/**
* 工程监理--巡视结果控制器
* Class SupervisionInspectionResultController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionResultController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视结果列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionResultLists());
}
/**
* @notes 添加工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function add()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('add');
$result = SupervisionInspectionResultLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionResultLogic::getError());
}
/**
* @notes 编辑工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function edit()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('edit');
$result = SupervisionInspectionResultLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionResultLogic::getError());
}
/**
* @notes 删除工程监理--巡视结果
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function delete()
{
$params = (new SupervisionInspectionResultValidate())->post()->goCheck('delete');
SupervisionInspectionResultLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视结果详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function detail()
{
$params = (new SupervisionInspectionResultValidate())->goCheck('detail');
$result = SupervisionInspectionResultLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,88 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--新增检查项明细列表
* Class SupervisionCheckItemDetailLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionCheckItemDetailLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function setSearch(): array
{
return [
'=' => ['node_id'],
];
}
/**
* @notes 获取工程监理--新增检查项明细列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists(): array
{
$params = $this->request->get();
$where = [];
if(isset($params['node_ids']) && $params['node_ids'] != ''){
$where[] = ['node_id','in',$params['node_ids']];
}
return SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)->where($where)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$data['must_check_text'] = $data->must_check_text;
})
->toArray();
}
/**
* @notes 获取工程监理--新增检查项明细数量
* @return int
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function count(): int
{
$params = $this->request->get();
$where = [];
if(isset($params['node_ids']) && $params['node_ids'] != ''){
$where[] = ['node_id','in',$params['node_ids']];
}
return SupervisionCheckItemDetail::where($this->searchWhere)->where($where)->count();
}
}

View File

@ -0,0 +1,85 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--新增检查项列表
* Class SupervisionCheckItemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionCheckItemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function setSearch(): array
{
return [
'=' => ['project_id', 'node_type'],
'%like%' => ['node_name'],
];
}
/**
* @notes 获取工程监理--新增检查项列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function lists(): array
{
$lists = SupervisionCheckItem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['p_node_name'] = $pid['node_name'];
$data['node_type_text'] = $data->node_type_text;
})
->toArray();
return buildTree($lists,'pid');
}
/**
* @notes 获取工程监理--新增检查项数量
* @return int
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function count(): int
{
return SupervisionCheckItem::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,94 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
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\lists\ListsSearchInterface;
/**
* 工程监理--巡视登记列表
* Class SupervisionInspectionLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function setSearch(): array
{
return [
'=' => ['project_id', 'inspection_type'],
'%like%' => ['inspection_code'],
];
}
/**
* @notes 获取工程监理--巡视登记列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists(): array
{
return SupervisionInspection::withoutField('update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$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;
})
->toArray();
}
/**
* @notes 获取工程监理--巡视登记数量
* @return int
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function count(): int
{
return SupervisionInspection::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,76 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视问题列表
* Class SupervisionInspectionProblemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionProblemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function setSearch(): array
{
return [
'=' => ['inspection_id'],
];
}
/**
* @notes 获取工程监理--巡视问题列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists(): array
{
return SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取工程监理--巡视问题数量
* @return int
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function count(): int
{
return SupervisionInspectionProblem::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,79 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视结果列表
* Class SupervisionInspectionResultLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionResultLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function setSearch(): array
{
return [
'=' => ['inspection_id', 'must_check', 'check_result'],
];
}
/**
* @notes 获取工程监理--巡视结果列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function lists(): array
{
return SupervisionInspectionResult::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($data){
$data['must_check_text'] = $data->must_check_text;
$data['check_result_text'] = $data->check_result_text;
})
->toArray();
}
/**
* @notes 获取工程监理--巡视结果数量
* @return int
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function count(): int
{
return SupervisionInspectionResult::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,113 @@
<?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\supervision_work\SupervisionCheckItemDetail;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--新增检查项明细逻辑
* Class SupervisionCheckItemDetailLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionCheckItemDetailLogic extends BaseLogic
{
/**
* @notes 添加工程监理--新增检查项明细
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItemDetail::create([
'node_id' => $params['node_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
]);
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 15:34
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItemDetail::where('id', $params['id'])->update([
'node_id' => $params['node_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'update_time' => time(),
]);
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 15:34
*/
public static function delete(array $params): bool
{
return SupervisionCheckItemDetail::destroy($params['id']);
}
/**
* @notes 获取工程监理--新增检查项明细详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function detail($params): array
{
$data = SupervisionCheckItemDetail::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$data['must_check_text'] = $data->must_check_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,160 @@
<?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\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\logic\BaseLogic;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use think\facade\Db;
/**
* 工程监理--新增检查项逻辑
* Class SupervisionCheckItemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionCheckItemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--新增检查项
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$res = SupervisionCheckItem::create([
'project_id' => $params['project_id'],
'node_name' => $params['node_name'],
'node_type' => $params['node_type'],
'node_code' => $params['node_code'],
'pid' => $params['pid'],
'inspection_basis' => $params['inspection_basis'],
'reference_law' => $params['reference_law'],
]);
if(!empty($params['check_item_detail'])){
foreach($params['check_item_detail'] as $v){
SupervisionCheckItemDetail::create([
'node_id' => $res->id,
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
]);
}
}
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 15:34
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionCheckItem::where('id', $params['id'])->update([
'project_id' => $params['project_id'],
'node_name' => $params['node_name'],
'node_type' => $params['node_type'],
'node_code' => $params['node_code'],
'pid' => $params['pid'],
'inspection_basis' => $params['inspection_basis'],
'reference_law' => $params['reference_law'],
'update_time' => time(),
]);
if(!empty($params['check_item_detail'])){
foreach($params['check_item_detail'] as $v){
if(!empty($v['id'])){
SupervisionCheckItemDetail::where('id',$v['id'])->update([
'node_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
'update_time' => time(),
]);
}else{
SupervisionCheckItemDetail::create([
'node_id' => $params['id'],
'check_type' => $v['check_type'],
'check_content' => $v['check_content'],
'must_check' => $v['must_check'],
]);
}
}
}
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 15:34
*/
public static function delete(array $params): bool
{
$data = SupervisionCheckItem::where('pid',$params['id'])->findOrEmpty();
if(!$data->isEmpty()){
self::setError('当前节点下存在子节点,请先删除子节点');
return false;
}
return SupervisionCheckItem::destroy($params['id']);
}
/**
* @notes 获取工程监理--新增检查项详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 15:34
*/
public static function detail($params): array
{
$data = SupervisionCheckItem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$project = SupervisionProject::field('project_name')->where('id',$data['project_id'])->findOrEmpty();
$pid = SupervisionCheckItem::field('node_name')->where('id',$data['pid'])->findOrEmpty();
$data['project_name'] = $project['project_name'];
$data['p_node_name'] = $pid['node_name'];
$data['node_type_text'] = $data->node_type_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,216 @@
<?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
{
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();
}
}

View File

@ -0,0 +1,112 @@
<?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\supervision_work\SupervisionInspectionProblem;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--巡视问题逻辑
* Class SupervisionInspectionProblemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionProblemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionProblem::create([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['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 {
SupervisionInspectionProblem::where('id', $params['id'])->update([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
'update_time' => time(),
]);
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
{
return SupervisionInspectionProblem::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视问题详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function detail($params): array
{
$data = SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
return $data->toArray();
}
}

View File

@ -0,0 +1,116 @@
<?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\supervision_work\SupervisionInspectionResult;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--巡视结果逻辑
* Class SupervisionInspectionResultLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionResultLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视结果
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionResult::create([
'inspection_id' => $params['inspection_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'check_result' => $params['check_result']
]);
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/27 09:23
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionResult::where('id', $params['id'])->update([
'inspection_id' => $params['inspection_id'],
'check_type' => $params['check_type'],
'check_content' => $params['check_content'],
'must_check' => $params['must_check'],
'check_result' => $params['check_result'],
'update_time' => time(),
]);
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/27 09:23
*/
public static function delete(array $params): bool
{
return SupervisionInspectionResult::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视结果详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/27 09:23
*/
public static function detail($params): array
{
$data = SupervisionInspectionResult::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
$data['must_check_text'] = $data->must_check_text;
$data['check_result_text'] = $data->check_result_text;
return $data->toArray();
}
}

View File

@ -0,0 +1,120 @@
<?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\validate\supervision_work;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\validate\BaseValidate;
/**
* 工程监理--新增检查项明细验证器
* Class SupervisionCheckItemDetailValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionCheckItemDetailValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'node_id' => 'require|checkNode',
'check_type' => 'require',
'check_content' => 'require',
'must_check' => 'require|in:0,1',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'node_id' => '节点id',
'check_type' => '检查类别',
'check_content' => '检查内容',
'must_check' => '是否必检',
];
/**
* @notes 添加场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionCheckItemDetailValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionCheckItemDetail::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkNode($value): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '检查项节点信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,172 @@
<?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\validate\supervision_work;
use app\common\model\dict\DictData;
use app\common\model\supervision_project\SupervisionProject;
use app\common\model\supervision_work\SupervisionCheckItem;
use app\common\model\supervision_work\SupervisionCheckItemDetail;
use app\common\validate\BaseValidate;
/**
* 工程监理--新增检查项验证器
* Class SupervisionCheckItemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionCheckItemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'pid' => 'integer|checkPid',
'node_name' => 'require',
'node_type' => 'require|checkNodeType',
'check_item_detail' => 'checkDetail',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'node_name' => '节点名称',
'node_type' => '节点类型',
'node_code' => '节点编号',
'pid' => '父节点id',
'inspection_basis' => '检查依据',
'reference_law' => '参考法规',
];
/**
* @notes 添加场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionCheckItemValidate
* @author likeadmin
* @date 2024/02/26 15:34
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目信息不存在';
}
return true;
}
public function checkPid($value): bool|string
{
if(empty($value)) return true;
$data = SupervisionCheckItem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '父级节点信息不存在';
}
return true;
}
public function checkNodeType($value): bool|string
{
$dict = DictData::where('type_value','check_item_node_type')->column('value');
if(!in_array($value,$dict)){
return '节点类型数据值无效';
}
return true;
}
public function checkDetail($value): bool|string
{
if(empty($value) || $value == '') return true;
if(!is_array($value)) return '检查项数据格式错误';
foreach($value as $k=>$v){
if(isset($v['id']) && !empty($v['id'])){
$data = SupervisionCheckItemDetail::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '第'.($k+1).'行检查项信息不存在';
}
}
if(empty($v['check_type'])){
return '第'.($k+1).'行检查类别为空';
}
if(empty($v['check_content'])){
return '第'.($k+1).'行检查内容为空';
}
if(empty($v['must_check'])){
return '第'.($k+1).'行是否必检为空';
}
if(!in_array($v['must_check'],[0,1])){
return '第'.($k+1).'行是否必检项数据值错误';
}
}
return true;
}
}

View File

@ -0,0 +1,122 @@
<?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\validate\supervision_work;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视问题验证器
* Class SupervisionInspectionProblemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionProblemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'inspection_id' => 'require|checkInspection',
'problem_cate' => 'require',
'problem_description' => 'require',
'problem_name' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'inspection_id' => '巡视id',
'problem_cate' => '问题分类',
'problem_description' => '问题说明',
'problem_name' => '问题名称',
];
/**
* @notes 添加场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneAdd()
{
return $this->only(['inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneEdit()
{
return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 删除场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '巡视信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,124 @@
<?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\validate\supervision_work;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视结果验证器
* Class SupervisionInspectionResultValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionResultValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'inspection_id' => 'require|checkInspection',
'check_type' => 'require',
'check_content' => 'require',
'must_check' => 'require|in:0,1',
'check_result' => 'require|in:0,1',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'inspection_id' => '巡视id',
'check_type' => '检查类别',
'check_content' => '检查内容',
'must_check' => '是否必检',
'check_result' => '检查结果',
];
/**
* @notes 添加场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneAdd()
{
return $this->only(['inspection_id','check_type','check_content','must_check','check_result']);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneEdit()
{
return $this->only(['id','inspection_id','check_type','check_content','must_check','check_result']);
}
/**
* @notes 删除场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionResultValidate
* @author likeadmin
* @date 2024/02/27 09:23
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspectionResult::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '巡视信息不存在';
}
return true;
}
}

View File

@ -0,0 +1,234 @@
<?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\validate\supervision_work;
use app\common\model\dict\DictData;
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\model\supervision_work\SupervisionInspectionProblem;
use app\common\model\supervision_work\SupervisionInspectionResult;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视登记验证器
* Class SupervisionInspectionValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'inspection_type' => 'require|checkInspectionType',
'check_item_id' => 'require|checkCheckItem',
'workers' => 'integer',
'managers' => 'integer',
'start_time' => 'require|dateFormat:Y-m-d H:i:s',
'end_time' => 'require|dateFormat:Y-m-d H:i:s',
'inspection_user' => 'require',
'company_id' => 'checkCompany',
'inspection_content' => 'require',
'is_important' => 'in:0,1',
'check_item_detail_ids' => 'checkCheckItemDetail',
'annex' => 'checkAnnex',
'inspection_result' => 'checkInspectionResult',
'inspection_problem' => 'checkInspectionProblem'
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
'inspection_code' => '编号',
'inspection_type' => '巡视类型',
'check_item_id' => '单位工程',
'inspection_position' => '巡视部位',
'workers' => '施工人数',
'managers' => '管理人数',
'start_time' => '巡视开始时间',
'end_time' => '巡视结束时间',
'inspection_user' => '巡视人员',
'inspection_content' => '巡视内容',
'is_important' => '设置重点关注事项',
'follow_user' => '关注人',
'check_item_detail_ids' => '检查表单选择',
'create_user' => '创建人',
];
/**
* @notes 添加场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = SupervisionProject::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目信息不存在';
}
return true;
}
public function checkInspectionType($value): bool|string
{
$dict = DictData::where('type_value','inspection_type')->column('value');
if(!in_array($value,$dict)){
return '巡视类型数据值无效';
}
return true;
}
public function checkCheckItem($value,$rule,$params): bool|string
{
$data = SupervisionCheckItem::where('id',$value)->where('project_id',$params['project_id'])->where('node_type',2)->findOrEmpty();
if($data->isEmpty()){
return '单位工程数据不存在';
}
return true;
}
public function checkCompany($value,$rule,$params): bool|string
{
$data = SupervisionParticipatingUnits::where('id',$value)->where('project_id',$params['project_id'])->findOrEmpty();
if($data->isEmpty()){
return '施工单位信息不存在';
}
return true;
}
public function checkCheckItemDetail($value,$rule,$params): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '检查表单选择数据格式错误';
foreach($value as $v){
$data = SupervisionCheckItem::where('id',$v)->where('project_id',$params['project_id'])->findOrEmpty();
if($data->isEmpty()){
return '检查项节点数据不存在';
}
}
return true;
}
public function checkAnnex($value): bool|string
{
if(!empty($value) && $value != '' && !is_array($value)){
return '附件格式错误';
}
return true;
}
public function checkInspectionResult($value): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '巡视结果数据格式错误';
foreach($value as $k=>$v){
if(!empty($v['id'])){
$data = SupervisionInspectionResult::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '巡视结果列表第'.($k+1).'行数据不存在';
}
}
if(empty($v['check_type'])) return '巡视结果列表第'.($k+1).'行检查类别为空';
if(empty($v['check_content'])) return '巡视结果列表第'.($k+1).'行检查内容为空';
if(!isset($v['must_check']) || $v['must_check'] == '') return '巡视结果列表第'.($k+1).'行是否必检为空';
if(!in_array($v['must_check'],[0,1])) return '巡视结果列表第'.($k+1).'行是否必检数据值无效';
if(!isset($v['check_result']) || $v['check_result'] == '') return '巡视结果列表第'.($k+1).'行检查结果为空';
if(!in_array($v['check_result'],[0,1])) return '巡视结果列表第'.($k+1).'行检查结果数据值无效';
}
return true;
}
public function checkInspectionProblem($value): bool|string
{
if(!isset($value) || $value == '') return true;
if(!is_array($value)) return '巡视问题数据格式错误';
foreach($value as $k=>$v){
if(!empty($v['id'])){
$data = SupervisionInspectionProblem::where('id',$v['id'])->findOrEmpty();
if($data->isEmpty()){
return '巡视问题列表第'.($k+1).'行数据不存在';
}
}
if(empty($v['problem_cate'])) return '巡视问题列表第'.($k+1).'行问题分类为空';
if(empty($v['problem_description'])) return '巡视问题列表第'.($k+1).'行问题说明为空';
if(empty($v['problem_name'])) return '巡视问题列表第'.($k+1).'行问题名称为空';
}
return true;
}
}

View File

@ -0,0 +1,38 @@
<?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\common\model\supervision_work;
use app\common\model\BaseModel;
use app\common\model\dict\DictData;
use think\model\concern\SoftDelete;
/**
* 工程监理--新增检查项模型
* Class SupervisionCheckItem
* @package app\common\model\supervision_work
*/
class SupervisionCheckItem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_check_item';
protected $deleteTime = 'delete_time';
public function getNodeTypeTextAttr($value,$data){
$dict = DictData::where('type_value','check_item_node_type')->column('name','value');
return !empty($data['node_type']) ? $dict[$data['node_type']] : '';
}
}

View File

@ -0,0 +1,38 @@
<?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\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--新增检查项明细模型
* Class SupervisionCheckItemDetail
* @package app\common\model\supervision_work
*/
class SupervisionCheckItemDetail extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_check_item_detail';
protected $deleteTime = 'delete_time';
public function getMustCheckTextAttr($value,$data): string
{
$arr = [0=>'否', 1=>'是'];
return $arr[$data['must_check']];
}
}

View File

@ -0,0 +1,63 @@
<?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\common\model\supervision_work;
use app\common\model\BaseModel;
use app\common\model\dict\DictData;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视登记模型
* Class SupervisionInspection
* @package app\common\model\supervision_work
*/
class SupervisionInspection extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection';
protected $deleteTime = 'delete_time';
public function getAnnexAttr($value)
{
return !empty($value) ? json_decode($value,true) : '';
}
public function getCheckItemDetailIdsAttr($value)
{
return !empty($value) ? json_decode($value,true) : '';
}
public function getInspectionTypeTextAttr($value,$data){
$dict = DictData::where('type_value','inspection_type')->column('name','value');
return !empty($data['inspection_type']) ? $dict[$data['inspection_type']] : '';
}
public function getIsImportantTextAttr($value,$data){
$arr = [0=>'有效', 1=>'无效'];
return $arr[$data['is_important']];
}
public function getStartTimeAttr($value): string
{
return !empty($value) ? date('Y-m-d H:i:s', $value) : '';
}
public function getEndTimeAttr($value): string
{
return !empty($value) ? date('Y-m-d H:i:s', $value) : '';
}
}

View File

@ -0,0 +1,34 @@
<?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\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视问题模型
* Class SupervisionInspectionProblem
* @package app\common\model\supervision_work
*/
class SupervisionInspectionProblem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection_problem';
protected $deleteTime = 'delete_time';
}

View File

@ -0,0 +1,44 @@
<?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\common\model\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视结果模型
* Class SupervisionInspectionResult
* @package app\common\model\supervision_work
*/
class SupervisionInspectionResult extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection_result';
protected $deleteTime = 'delete_time';
public function getMustCheckTextAttr($value,$data): string
{
$arr = [0=>'否',1=>'是'];
return $arr[$data['must_check']];
}
public function getCheckResultTextAttr($value,$data): string
{
$arr = [0=>'合格',1=>'不合格'];
return $arr[$data['check_result']];
}
}