work/application/project/controller/ProjectFeatures.php
2024-01-03 09:54:57 +08:00

117 lines
3.4 KiB
PHP
Executable File

<?php
namespace app\project\controller;
use controller\BasicApi;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\Exception;
use think\exception\DbException;
use think\exception\PDOException;
use think\facade\Request;
/**
*/
class ProjectFeatures extends BasicApi
{
public function __construct()
{
parent::__construct();
if (!$this->model) {
$this->model = new \app\common\Model\ProjectFeatures();
}
}
/**
* 显示资源版本库
* @return void
* @throws DataNotFoundException
* @throws ModelNotFoundException
* @throws DbException
*/
public function index()
{
$where = [];
$code = Request::post('projectCode');
if (!$code) {
$this->error("请选择一个项目");
}
$where[] = ['project_code', '=', $code];
// $list = $this->model->_list($where, 'sort asc,id asc');
$list = $this->model->where($where)->order('id desc')->select()->toArray();
$this->success('', $list);
}
/**
* 新增
* @param Request $request
* @return void
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
*/
public function save(Request $request)
{
$data = $request::only('name,projectCode,description');
if (!$request::post('name')) {
$this->error("请填写版本库名称");
}
$result = $this->model->createData($data['name'], $data['description'], $data['projectCode'], getCurrentOrganizationCode());
if (!isError($result)) {
$this->success('添加成功', $result);
}
$this->error($result['msg']);
}
/**
* 保存
* @param Request $request
* @return void
* @throws DataNotFoundException
* @throws ModelNotFoundException
* @throws DbException
*/
public function edit(Request $request)
{
$data = $request::only('name,description,featuresCode');
if (!$request::post('name')) {
$this->error("请填写版本库名称");
}
if (!$data['featuresCode']) {
$this->error("请选择一个版本库");
}
$features = $this->model->where(['code' => $data['featuresCode']])->field('id,project_code')->find();
if (!$features) {
$this->error("该版本库已失效");
}
$has = $this->model->where(['name' => $data['name'], 'project_code' => $features['project_code']])->field('id')->find();
if ($has && $has['id'] != $features['id']) {
$this->error("该版本库名称已存在");
}
$result = $this->model->_edit(['name' => $data['name'], 'description' => $data['description']], ['code' => $data['featuresCode']]);
if ($result) {
$this->success('');
}
$this->error("操作失败,请稍候再试!");
}
/**
* 删除版本库
* @return void
* @throws Exception
* @throws PDOException
*/
public function delete()
{
$code = Request::post('featuresCode');
if (!$code) {
$this->error("请选择一个版本库");
}
$result = $this->model->deleteProjectFeatures($code);
if (isError($result)) {
$this->error($result['msg'], $result['errno']);
}
$this->success();
}
}