新增项目预警设置模块

This commit is contained in:
weiz 2023-12-14 17:06:16 +08:00
parent 529de801d7
commit 2cf4b0c856
5 changed files with 482 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\project;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\project\ProjectAlarmSetLists;
use app\adminapi\logic\project\ProjectAlarmSetLogic;
use app\adminapi\validate\project\ProjectAlarmSetValidate;
/**
* 项目预警设置控制器
* Class ProjectAlarmSetController
* @package app\adminapi\controller\project
*/
class ProjectAlarmSetController extends BaseAdminController
{
/**
* @notes 获取项目预警设置列表
* @return \think\response\Json
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function lists()
{
return $this->dataLists(new ProjectAlarmSetLists());
}
/**
* @notes 添加项目预警设置
* @return \think\response\Json
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function add()
{
$params = (new ProjectAlarmSetValidate())->post()->goCheck('add');
$result = ProjectAlarmSetLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(ProjectAlarmSetLogic::getError());
}
/**
* @notes 编辑项目预警设置
* @return \think\response\Json
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function edit()
{
$params = (new ProjectAlarmSetValidate())->post()->goCheck('edit');
$result = ProjectAlarmSetLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(ProjectAlarmSetLogic::getError());
}
/**
* @notes 删除项目预警设置
* @return \think\response\Json
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function delete()
{
$params = (new ProjectAlarmSetValidate())->post()->goCheck('delete');
ProjectAlarmSetLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取项目预警设置详情
* @return \think\response\Json
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function detail()
{
$params = (new ProjectAlarmSetValidate())->goCheck('detail');
$result = ProjectAlarmSetLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,93 @@
<?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\project;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\project\Project;
use app\common\model\project\ProjectAlarmSet;
use app\common\lists\ListsSearchInterface;
/**
* 项目预警设置列表
* Class ProjectAlarmSetLists
* @package app\adminapi\listsproject
*/
class ProjectAlarmSetLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function setSearch(): array
{
return [];
}
/**
* @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:24
*/
public function lists(): array
{
$params = $this->request->param();
$where = [];
if(isset($params['project_name']) && $params['project_name'] != ''){
$projectIds = Project::where('name','like','%'.$params['project_name'].'%')->column('id');
$where[] = ['project_id','in',$projectIds];
}
return ProjectAlarmSet::where($this->searchWhere)->where($where)
->field(['id', 'project_id', 'material_budget_expenditure_ratio', 'labour_budget_expenditure_ratio', 'cost_budget_expenditure_ratio', 'subcontract_budget_expenditure_ratio'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($item){
$project = Project::field('name,project_code')->where('id',$item['project_id'])->findOrEmpty();
$item['project_name'] = $project['name'];
$item['project_code'] = $project['project_code'];
return $item;
})
->toArray();
}
/**
* @notes 获取项目预警设置数量
* @return int
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function count(): int
{
$params = $this->request->param();
$where = [];
if(isset($params['project_name']) && $params['project_name'] != ''){
$projectIds = Project::where('name','like','%'.$params['project_name'].'%')->column('id');
$where[] = ['project_id','in',$projectIds];
}
return ProjectAlarmSet::where($this->searchWhere)->where($where)->count();
}
}

View File

@ -0,0 +1,117 @@
<?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\project;
use app\common\model\project\Project;
use app\common\model\project\ProjectAlarmSet;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 项目预警设置逻辑
* Class ProjectAlarmSetLogic
* @package app\adminapi\logic\project
*/
class ProjectAlarmSetLogic extends BaseLogic
{
/**
* @notes 添加项目预警设置
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/12/14 16:24
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
ProjectAlarmSet::create([
'project_id' => $params['project_id'],
'material_budget_expenditure_ratio' => $params['material_budget_expenditure_ratio'],
'labour_budget_expenditure_ratio' => $params['labour_budget_expenditure_ratio'],
'cost_budget_expenditure_ratio' => $params['cost_budget_expenditure_ratio'],
'subcontract_budget_expenditure_ratio' => $params['subcontract_budget_expenditure_ratio'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑项目预警设置
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/12/14 16:24
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
ProjectAlarmSet::where('id', $params['id'])->update([
'project_id' => $params['project_id'],
'material_budget_expenditure_ratio' => $params['material_budget_expenditure_ratio'],
'labour_budget_expenditure_ratio' => $params['labour_budget_expenditure_ratio'],
'cost_budget_expenditure_ratio' => $params['cost_budget_expenditure_ratio'],
'subcontract_budget_expenditure_ratio' => $params['subcontract_budget_expenditure_ratio'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除项目预警设置
* @param array $params
* @return bool
* @author likeadmin
* @date 2023/12/14 16:24
*/
public static function delete(array $params): bool
{
return ProjectAlarmSet::destroy($params['id']);
}
/**
* @notes 获取项目预警设置详情
* @param $params
* @return array
* @author likeadmin
* @date 2023/12/14 16:24
*/
public static function detail($params): array
{
$data = ProjectAlarmSet::field('id,project_id,material_budget_expenditure_ratio,labour_budget_expenditure_ratio,cost_budget_expenditure_ratio,subcontract_budget_expenditure_ratio')->findOrEmpty($params['id'])->toArray();
$project = Project::field('name,project_code')->where('id',$data['project_id'])->findOrEmpty();
$data['project_name'] = $project['name'];
$data['project_code'] = $project['project_code'];
return $data;
}
}

View File

@ -0,0 +1,130 @@
<?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\project;
use app\common\model\project\Project;
use app\common\model\project\ProjectAlarmSet;
use app\common\validate\BaseValidate;
/**
* 项目预警设置验证器
* Class ProjectAlarmSetValidate
* @package app\adminapi\validate\project
*/
class ProjectAlarmSetValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'project_id' => 'require|checkProject',
'material_budget_expenditure_ratio' => 'float|egt:0',
'labour_budget_expenditure_ratio' => 'float|egt:0',
'cost_budget_expenditure_ratio' => 'float|egt:0',
'subcontract_budget_expenditure_ratio' => 'float|egt:0',
];
protected $message = [
'project_id.require' => '请选择项目',
'material_budget_expenditure_ratio.float' => '材料预算花费比例必须是数字',
'material_budget_expenditure_ratio.egt' => '材料预算花费比例必须大于等于0',
'labour_budget_expenditure_ratio.float' => '人工预算花费比例必须是数字',
'labour_budget_expenditure_ratio.egt' => '人工预算花费比例必须大于等于0',
'cost_budget_expenditure_ratio.float' => '费用预算花费比例必须是数字',
'cost_budget_expenditure_ratio.egt' => '费用预算花费比例必须大于等于0',
'subcontract_budget_expenditure_ratio.float' => '分包预算花费比例必须是数字',
'subcontract_budget_expenditure_ratio.egt' => '分包预算花费比例必须大于等于0',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'project_id' => '项目id',
];
/**
* @notes 添加场景
* @return ProjectAlarmSetValidate
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function sceneAdd()
{
return $this->remove('id',true);
}
/**
* @notes 编辑场景
* @return ProjectAlarmSetValidate
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function sceneEdit()
{}
/**
* @notes 删除场景
* @return ProjectAlarmSetValidate
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectAlarmSetValidate
* @author likeadmin
* @date 2023/12/14 16:24
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = ProjectAlarmSet::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkProject($value): bool|string
{
$data = Project::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '项目不存在';
}
return true;
}
}

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\project;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 项目预警设置模型
* Class ProjectAlarmSet
* @package app\common\model\project
*/
class ProjectAlarmSet extends BaseModel
{
use SoftDelete;
protected $name = 'project_alarm_set';
protected $deleteTime = 'delete_time';
}