TaskLogic.php 3.2 KB
<?php

namespace App\Http\Logic\Aside\Task;

use App\Helper\Arr;
use App\Http\Logic\Aside\BaseLogic;
use App\Models\Task\Task;
use App\Models\Task\TaskOwner;
use Illuminate\Support\Facades\DB;

/**
 * Class TaskLogic
 * @package App\Http\Logic\Aside\Task
 * @author zbj
 * @date 2023/4/27
 */
class TaskLogic extends BaseLogic
{
    public function __construct()
    {
        parent::__construct();
        $this->param = $this->requestAll;
        $this->model = new Task();
    }

    /**
     * @remark :获取数据详情
     * @name   :getTaskInfo
     * @author :lyh
     * @method :post
     * @time   :2023/8/23 16:42
     */
    public function getTaskInfo()
    {
        $info = $this->model->where(['id'=>$this->param['id']])->with('owner')->with('follow')->first();
        if($info === false){
            $this->fail('error');
        }
        if(!empty($info['attachment'])){
            $info['attachment'] = getFileUrl($info['attachment']);
            $info['attachment_name'] = basename($info['attachment']);
        }
        if(!empty($info['follow'])){
            foreach ($info['follow'] as $k => $v){
                if(!empty($v['attachment'])){
                    $v['attachment'] = getFileUrl($v['attachment']);
                    $v['attachment_name'] = basename($v['attachment']);
                }
                $info['follow'][$k] = $v;
            }
        }
        return $this->success($info);
    }

    /**
     * @remark :保存
     * @name   :save
     * @author :lyh
     * @method :post
     * @time   :2023/8/23 17:19
     */
    public function save($param){

        DB::beginTransaction();
        try {
            $res = parent::save($param);
            $data['task_id'] = $res['id'];
            //支持分配多人
            $owner = Arr::splitFilterToArray($param['owner']);
            foreach ($owner as $manage_id){
                $data['manage_ids'][] = $manage_id;
                (new TaskOwnerLogic)->save($data);
            }
            DB::commit();
        }catch (\Exception $e){
            DB::rollBack();
            errorLog('工单保存失败', $param, $e);
            $this->fail('保存失败');
        }
        return $this->success();
    }

    /**
     * 修改状态
     * @param $param
     * @return array
     * @throws \App\Exceptions\AsideGlobalException
     * @throws \App\Exceptions\BsideGlobalException
     * @author zbj
     * @date 2023/4/27
     */
    public function status(){
        $taskOwnerModel = new TaskOwner();
        $ownerInfo = $taskOwnerModel->read(['task_id'=>$this->param['id'],'manage_id'=>$this->manager['id']]);
        if($ownerInfo === false){
            $this->fail('当前工单不属于您');
        }
        try {
            $this->model->edit(['status'=>$this->param['status']],['id'=>$this->param['id']]);
            $taskOwnerModel->edit(['status'=>$this->param['status']],['task_id'=>$this->param['id']]);
        }catch (\Exception $e){
            $this->fail('error');
        }
        return $this->success();
    }

    public function clearCache($id)
    {
        parent::clearCache($id);
        parent::setWith(['owner', 'follow']);
        parent::clearCache($id);
    }
}