add 项目变更签证明细

This commit is contained in:
chenbo 2024-02-23 10:27:57 +08:00
parent 121238959d
commit b69b852264
5 changed files with 443 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_process_management;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\project_process_management\ProjectChangeVisaContentLists;
use app\adminapi\logic\project_process_management\ProjectChangeVisaContentLogic;
use app\adminapi\validate\project_process_management\ProjectChangeVisaContentValidate;
/**
* ProjectChangeVisaContent控制器
* Class ProjectChangeVisaContentController
* @package app\adminapi\controller\project_process_management
*/
class ProjectChangeVisaContentController extends BaseAdminController
{
/**
* @notes 获取列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function lists()
{
return $this->dataLists(new ProjectChangeVisaContentLists());
}
/**
* @notes 添加
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function add()
{
$params = (new ProjectChangeVisaContentValidate())->post()->goCheck('add');
$result = ProjectChangeVisaContentLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(ProjectChangeVisaContentLogic::getError());
}
/**
* @notes 编辑
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function edit()
{
$params = (new ProjectChangeVisaContentValidate())->post()->goCheck('edit');
$result = ProjectChangeVisaContentLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(ProjectChangeVisaContentLogic::getError());
}
/**
* @notes 删除
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function delete()
{
$params = (new ProjectChangeVisaContentValidate())->post()->goCheck('delete');
ProjectChangeVisaContentLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function detail()
{
$params = (new ProjectChangeVisaContentValidate())->goCheck('detail');
$result = ProjectChangeVisaContentLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,77 @@
<?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_process_management;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\project_process_management\ProjectChangeVisaContent;
use app\common\lists\ListsSearchInterface;
/**
* ProjectChangeVisaContent列表
* Class ProjectChangeVisaContentLists
* @package app\adminapi\listsproject_process_management
*/
class ProjectChangeVisaContentLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function setSearch(): array
{
return [
'=' => ['project_change_visa_dataid', 'directory', 'unit_name', 'time', 'major', 'category', 'review_content', 'review_comments', 'reviewer', 'reviewer_id', 'declared_value', 'calculated_value', 'remark'],
];
}
/**
* @notes 获取列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function lists(): array
{
return ProjectChangeVisaContent::where($this->searchWhere)
->field(['id', 'project_change_visa_dataid', 'directory', 'unit_name', 'time', 'major', 'category', 'review_content', 'review_comments', 'reviewer', 'reviewer_id', 'declared_value', 'calculated_value', 'remark'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取数量
* @return int
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function count(): int
{
return ProjectChangeVisaContent::where($this->searchWhere)->count();
}
}

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\logic\project_process_management;
use app\common\model\project_process_management\ProjectChangeVisaContent;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* ProjectChangeVisaContent逻辑
* Class ProjectChangeVisaContentLogic
* @package app\adminapi\logic\project_process_management
*/
class ProjectChangeVisaContentLogic extends BaseLogic
{
/**
* @notes 添加
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/23 10:27
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
ProjectChangeVisaContent::create([
'project_change_visa_dataid' => $params['project_change_visa_dataid'],
'directory' => $params['directory'],
'unit_name' => $params['unit_name'],
'time' => $params['time'],
'major' => $params['major'],
'category' => $params['category'],
'review_content' => $params['review_content'],
'review_comments' => $params['review_comments'],
'reviewer' => $params['reviewer'],
'reviewer_id' => $params['reviewer_id'],
'declared_value' => $params['declared_value'],
'calculated_value' => $params['calculated_value'],
'remark' => $params['remark'],
]);
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/23 10:27
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
ProjectChangeVisaContent::where('id', $params['id'])->update([
'project_change_visa_dataid' => $params['project_change_visa_dataid'],
'directory' => $params['directory'],
'unit_name' => $params['unit_name'],
'time' => $params['time'],
'major' => $params['major'],
'category' => $params['category'],
'review_content' => $params['review_content'],
'review_comments' => $params['review_comments'],
'reviewer' => $params['reviewer'],
'reviewer_id' => $params['reviewer_id'],
'declared_value' => $params['declared_value'],
'calculated_value' => $params['calculated_value'],
'remark' => $params['remark'],
]);
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/23 10:27
*/
public static function delete(array $params): bool
{
return ProjectChangeVisaContent::destroy($params['id']);
}
/**
* @notes 获取详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/23 10:27
*/
public static function detail($params): array
{
return ProjectChangeVisaContent::findOrEmpty($params['id'])->toArray();
}
}

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\validate\project_process_management;
use app\common\validate\BaseValidate;
/**
* ProjectChangeVisaContent验证器
* Class ProjectChangeVisaContentValidate
* @package app\adminapi\validate\project_process_management
*/
class ProjectChangeVisaContentValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return ProjectChangeVisaContentValidate
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return ProjectChangeVisaContentValidate
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return ProjectChangeVisaContentValidate
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return ProjectChangeVisaContentValidate
* @author likeadmin
* @date 2024/02/23 10:27
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}

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_process_management;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* ProjectChangeVisaContent模型
* Class ProjectChangeVisaContent
* @package app\common\model\project_process_management
*/
class ProjectChangeVisaContent extends BaseModel
{
use SoftDelete;
protected $name = 'project_change_visa_content';
protected $deleteTime = 'delete_time';
}