| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package com.linkwechat.controller;
- import com.linkwechat.common.core.controller.BaseController;
- import com.linkwechat.common.core.domain.AjaxResult;
- import com.linkwechat.common.core.page.TableDataInfo;
- import com.linkwechat.common.enums.MessageNoticeType;
- import com.linkwechat.domain.community.WeKeywordGroupTask;
- import com.linkwechat.domain.community.vo.WeEmplTaskVo;
- import com.linkwechat.service.IWeCommunityKeywordToGroupService;
- import com.linkwechat.service.IWeGroupSopService;
- import com.linkwechat.service.IWePresTagGroupTaskService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * 社区运营H5接口
- *
- * @Author Hang
- * @Date 2021/3/24 10:54
- */
- @RestController
- @RequestMapping(value = "/community/h5")
- public class WeCommunityH5Controller extends BaseController {
- @Autowired
- private IWeCommunityKeywordToGroupService keywordToGroupService;
- @Autowired
- private IWeGroupSopService iWeGroupSopService;
- @Autowired
- private IWePresTagGroupTaskService iWePresTagGroupTaskService;
- /**
- * 获取任务对应的执行人列表
- * @param taskId 任务id
- * @param type 任务类型 1:标签建群任务 2:sop任务
- * @return
- */
- @GetMapping("/scope/{taskId}")
- public AjaxResult getTaskScopeList(@PathVariable("taskId") Long taskId, @RequestParam(value = "type") Integer type) {
- if (type.equals(MessageNoticeType.TAG.getType())) {
- return AjaxResult.success(iWePresTagGroupTaskService.getScopeListByTaskId(taskId));
- } else {
- return AjaxResult.success(iWeGroupSopService.getScopeListByRuleId(taskId));
- }
- }
- /**
- * h5页面根据员工id获取老客标签建群和群sop任务信息
- *
- * @param emplId 员工id
- * @param type 数据类型,0:全部数据 1:老客标签建群数据 2:群SOP数据
- * @return
- */
- @GetMapping("/{emplId}")
- public AjaxResult<WeEmplTaskVo> getEmplTask(@PathVariable("emplId") String emplId, @RequestParam(value = "type") Integer type) {
- WeEmplTaskVo weEmplTaskVo=new WeEmplTaskVo();
- if (type.equals(MessageNoticeType.TAG.getType())) {
- // 老客标签建群数据
- weEmplTaskVo.setDone(iWePresTagGroupTaskService.getFollowerTaskList(emplId, 1));
- weEmplTaskVo.setTodo(iWePresTagGroupTaskService.getFollowerTaskList(emplId, 0));
- } else if (type.equals(MessageNoticeType.SOP.getType())) {
- // 群SOP数据
- weEmplTaskVo.setTodo(iWeGroupSopService.getEmplTaskList(emplId, false));
- weEmplTaskVo.setDone(iWeGroupSopService.getEmplTaskList(emplId, true));
- } else {
- // 全部数据
- List todoList = new ArrayList();
- List doneList = new ArrayList();
- todoList.addAll(iWePresTagGroupTaskService.getFollowerTaskList(emplId, 0));
- todoList.addAll(iWeGroupSopService.getEmplTaskList(emplId, false));
- weEmplTaskVo.setTodo(todoList);
- doneList.addAll(iWePresTagGroupTaskService.getFollowerTaskList(emplId, 1));
- doneList.addAll(iWeGroupSopService.getEmplTaskList(emplId, true));
- weEmplTaskVo.setDone(doneList);
- }
- return AjaxResult.success(
- weEmplTaskVo
- );
- }
- /**
- * 员工发送老客标签建群任务信息或者发送sop到其客户群之后,变更其任务状态
- *
- * @param taskId 老客标签建群时代表任务id,sop时,代表规则id
- * @param emplId 老客标签建群时代表员工id,sop时,代表群主
- * @param type 类型 0:老客标签建群 1:sop
- * @return 结果
- */
- @GetMapping("/changeStatus")
- public AjaxResult changeStatus(@RequestParam("taskId") Long taskId, @RequestParam("emplId") String emplId, @RequestParam("type") Integer type) {
- if (type.equals(0)) {
- return toAjax(iWePresTagGroupTaskService.updateFollowerTaskStatus(taskId, emplId));
- } else {
- return toAjax(iWeGroupSopService.updateChatSopStatus(taskId, emplId));
- }
- }
- /**
- * 用于支持H5页面的名称和关键字检索
- *
- * @param word 过滤字符
- * @return 结果
- */
- @GetMapping(path = "/filter")
- public TableDataInfo filter(@RequestParam("taskNameOrKeys") String word) {
- startPage();
- List<WeKeywordGroupTask> taskList = keywordToGroupService.filterByNameOrKeyword(word);
- return getDataTable(taskList);
- }
- }
|