122 lines
3.7 KiB
PHP
122 lines
3.7 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\logic\custom;
|
||
|
||
|
||
use app\common\model\custom\CustomerDemandSolution;
|
||
use app\common\logic\BaseLogic;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 解决方案逻辑
|
||
* Class CustomerDemandSolutionLogic
|
||
* @package app\adminapi\logic\custom
|
||
*/
|
||
class CustomerDemandSolutionLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加解决方案
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/11/24 21:32
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
CustomerDemandSolution::create([
|
||
'org_id' => $params['org_id'],
|
||
'department_id' => $params['department_id'],
|
||
'project_id' => $params['project_id'],
|
||
'customer_demand_id' => $params['customer_demand_id'],
|
||
'theme' => $params['theme'],
|
||
'submission_time' => strtotime($params['submission_time']),
|
||
'solution_content' => $params['solution_content'],
|
||
'customer_feedback' => $params['customer_feedback'],
|
||
'annex' => $params['annex']
|
||
]);
|
||
|
||
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/11/24 21:32
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
CustomerDemandSolution::where('id', $params['id'])->update([
|
||
'org_id' => $params['org_id'],
|
||
'department_id' => $params['department_id'],
|
||
'project_id' => $params['project_id'],
|
||
'customer_demand_id' => $params['customer_demand_id'],
|
||
'theme' => $params['theme'],
|
||
'submission_time' => strtotime($params['submission_time']),
|
||
'solution_content' => $params['solution_content'],
|
||
'customer_feedback' => $params['customer_feedback'],
|
||
'annex' => $params['annex']
|
||
]);
|
||
|
||
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/11/24 21:32
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return CustomerDemandSolution::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取解决方案详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/11/24 21:32
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
return CustomerDemandSolution::findOrEmpty($params['id'])->toArray();
|
||
}
|
||
} |