Record.php 9.9 KB
<?php

namespace app\admin\controller\facrm\clues;

use app\common\controller\Backend;
use think\Db;
use think\Exception;
use think\exception\PDOException;


/**
 *跟进记录
 */
class Record extends Backend
{

    protected $model = null;
    /**
     * 快速搜索时执行查找的字段
     */
    protected $searchFields = 'content';
    protected $childrenAdminIds = [];
    private $types = "clues";

    public function _initialize()
    {
        parent::_initialize();
        $this->model = model('\app\admin\model\facrm\Record');
        $this->request->filter(['strip_tags']);
    }

    /**
     * 跟进记录
     */
    public function index($clues_id = null)
    {
        //设置过滤方法
        $this->request->filter(['strip_tags']);


        if ($this->request->isAjax()) {

            $filter_w = [];


            $filter_w['types'] = $this->types;
            if ($clues_id) {
                $filter_w['types_id'] = $clues_id;
                //判断是否有该线索的权限
                $auth = new \addons\facrm\library\Auth();
                if (!$auth->checkCluesAuth($clues_id, $this->auth)) {
                    $this->error(__('您没有该线索权限'));
                }
            }else{
                //全部 超级管理员不做限制
                if (!$this->auth->isSuperAdmin()){
                    $this->childrenAdminIds = $this->auth->getChildrenAdminIds(true);
                    $filter_w['create_user_id'] = ['in', $this->childrenAdminIds];
                }
            }

            list($where, $sort, $order, $offset, $limit) = $this->buildparams();

            $total = $this->model
                ->where($where)
                ->where($filter_w)
                ->order($sort, $order)->fetchSql(false)
                ->count();
            $list = $this->model
                ->where($filter_w)
                ->where($where)
                ->with([
                    'createUser' => function ($user) {
                        $user->field('id,username,nickname');
                    },
                    'clues' => function ($clues) {
                        $clues->field('id,name');
                    },
                    'files' => function ($files) {
                        $files->field('id,url,record_id');
                    },
                ])
                ->order($sort, $order)
                ->limit($offset, $limit)->fetchSql(false)
                ->select();
            $result = array("total" => $total, "rows" => $list);

            return json($result);
        }
        $config = get_addon_config('facrm');
        $this->view->assign("record_type_list", $config['record_type']);
        return $this->view->fetch();
    }

    /**
     * 添加跟进
     * @return mixed
     */
    public function add($ids = null)
    {
        $clues = model('\app\admin\model\facrm\Clues');
        $row = $clues->get($ids);
        if (!$row)
            $this->error(__('No Results were found'));

        $auth = new \addons\facrm\library\Auth();
        if (!$auth->checkCluesAuth($ids, $this->auth)) {
            $this->error(__('您没有权限'));
        }
        $status_row = \app\admin\model\facrm\Fields::get(['source' => 'clues', 'name' => 'follow_status','status'=>'normal']);
        if ($this->request->isPost()) {
            $params = $this->request->post("row/a");
            $params['next_time'] = $params['next_time'] ? strtotime($params['next_time']) : 0;
            $status_txt = "";
            if ($status_row && isset($status_row['content_list'][$params['follow_status']])) {
                $status_txt = $status_row['content_list'][$params['follow_status']];
                $params['content'] = "【{$status_txt}】" . $params['content'];
            }

            $params = array_merge($params, [
                'create_user_id' => $this->auth->id,
                'types_id' => $row->id,
                'types' => $this->types,
            ]);
            $name = str_replace("\\model\\", "\\validate\\", get_class( $this->model));
            $result = $this->model->allowField(true)->validateFailException(false)->validate($name . '.add')->save($params);
            if(false === $result){
                // 验证失败 输出错误信息
                $this->error( $this->model->getError());
            }

            //更新线索表
            $row->next_time = $params['next_time'];
            $row->follow_time = time();
            $status_txt ? $row->follow_status = $params['follow_status'] : '';
            $row->save();
            //如果存在附件
            if ($params['image']) {
                $images = explode(",", $params['image']);
                $files_data = array();
                foreach ($images as $key => $v) {
                    $files_data[$key]['url'] = $v;
                    $files_data[$key]['types_id'] = $row->id;
                    $files_data[$key]['types'] = $this->types;
                }
                $this->model->files()->saveAll($files_data);
            }
            $this->success(__('跟进成功'));
        } else {
            $config = get_addon_config('facrm');
            $this->view->assign("levelList", $config['level']);
            $this->view->assign("industryList", $config['industry']);
            $this->view->assign("sourceList", $config['source']);
            $this->view->assign("record_type_list", $config['record_type']);
            $this->view->assign("row", $row);
        }

        $this->view->assign("status_row", $status_row);
        $this->view->assign("row", $row);
        return $this->view->fetch();
    }

    /**
     * 删除
     * @param string $ids
     */
    public function del($ids = "")
    {
        if ($ids) {
            $pk = $this->model->getPk();
            $adminIds = $this->getDataLimitAdminIds();
            if (is_array($adminIds)) {
                $this->model->where($this->dataLimitField, 'in', $adminIds);
            }


            $this->childrenAdminIds = $this->auth->getChildrenAdminIds(true);
            if (is_array($adminIds)) {
                $this->model->where($this->dataLimitField, 'in', $adminIds);
            }
            $list = $this->model->where($pk, 'in', $ids)->where('create_user_id', 'in', $this->childrenAdminIds)->select();


            $count = 0;
            Db::startTrans();
            try {
                foreach ($list as $k => $v) {
                    $count += $v->delete();
                }
                Db::commit();
            } catch (PDOException $e) {
                Db::rollback();
                $this->error($e->getMessage());
            } catch (Exception $e) {
                Db::rollback();
                $this->error($e->getMessage());
            }
            if ($count) {
                $this->success();
            } else {
                $this->error(__('No rows were deleted'));
            }
        }
        $this->error(__('Parameter %s can not be empty', 'ids'));
    }

    /**
     *附件查看
     */
    public function files($ids = "")
    {
        //判断是否有权限
        $auth = new \addons\facrm\library\Auth();
        if ($this->request->isAjax()) {
            $clues_id = $this->request->param("clues_id");
            $filter_w['types'] = $this->types;
            if (!$clues_id) {
                $this->error(__('线索不存在'));
            }
            $filter_w['types_id'] = $clues_id;
            if (!$auth->checkCluesAuth($clues_id, $this->auth)) {
                $this->error(__('您没有权限'));
            }

            $this->model = model('\app\admin\model\facrm\record\Files');
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
            $total = $this->model
                ->where($where)
                ->where($filter_w)
                ->order($sort, $order)->fetchSql(false)
                ->count();
            $list = $this->model
                ->where($where)
                ->where($filter_w)
                ->order($sort, $order)
                ->limit($offset, $limit)->fetchSql(false)
                ->select();
            foreach ($list as $k => &$v) {
                $v['fullurl'] = cdnurl($v['url'],true);
                $v['imagetype'] = pathinfo($v['url'], PATHINFO_EXTENSION);
            }
            unset($v);
            $result = array("total" => $total, "rows" => $list);
            return json($result);

        }
        $row = $this->model->get($ids, ['files']);
        if (!$row) $this->error(__('数据不存在'));

        if (!$auth->checkCluesAuth($row->types_id, $this->auth)) {
            $this->error(__('您没有权限'));
        }

        $this->view->assign("row", $row);
        return $this->view->fetch();
    }


    /**
     * 通话记录
     */
    public function calllog($clues_id = null)
    {

        if ($this->request->isAjax()) {
            $this->model = new \app\admin\model\facrm\CloudcallLog();
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
            $list = $this->model
                ->where($where)
                ->with(['admin' => function ($q) {
                    $q->field('id,nickname');
                }])
                ->where('source', 'clues')
                ->where('source_id', $clues_id)
                ->field('admin_id,from_exten,id,create_time,status,record_file,call_time_length')
                ->order($sort, $order)
                ->limit($offset, $limit)
                ->select();
            $total = $this->model
                ->where($where)
                ->where('source', 'clues')
                ->where('source_id', $clues_id)
                ->order($sort, $order)
                ->fetchSql(false)
                ->count();

            $list = collection($list)->toArray();
            $result = array("total" => $total, "rows" => $list);

            return json($result);
        }

        $this->assignconfig('clues_id',$clues_id);

        return $this->view->fetch("facrm/customer/record/calllog");
    }

}