|
@@ -73,7 +73,7 @@ public class EventHandleController {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@GetMapping("/not-handle/getCount")
|
|
@GetMapping("/not-handle/getCount")
|
|
- @ApiOperation(tags = {"未处理事件"},value = "未处理事件数量查询")
|
|
|
|
|
|
+ @ApiOperation(tags = {"未处理事件"},value = "未处理事件数量查询 --二期新增")
|
|
public Result<Integer> getNotHandleCount(HttpServletRequest request, @RequestHeader(value = "token") String token){
|
|
public Result<Integer> getNotHandleCount(HttpServletRequest request, @RequestHeader(value = "token") String token){
|
|
try {
|
|
try {
|
|
UserLogindConvertVO loginUser = WebPageUtils.getCurrentLoginedUser(request);
|
|
UserLogindConvertVO loginUser = WebPageUtils.getCurrentLoginedUser(request);
|
|
@@ -137,7 +137,7 @@ public class EventHandleController {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@GetMapping("/recent-handle/list")
|
|
@GetMapping("/recent-handle/list")
|
|
- @ApiOperation(tags = {"近期处理事件"},value = "近期处理事件(只有坐席能用)")
|
|
|
|
|
|
+ @ApiOperation(tags = {"近期处理事件"},value = "近期处理事件(只有坐席能用)--二期新增")
|
|
public Result<List<EventOrderVO>> listRecentHandle(HttpServletRequest request, @RequestHeader(value = "token") String token){
|
|
public Result<List<EventOrderVO>> listRecentHandle(HttpServletRequest request, @RequestHeader(value = "token") String token){
|
|
try {
|
|
try {
|
|
UserLogindConvertVO loginUser = WebPageUtils.getCurrentLoginedUser(request);
|
|
UserLogindConvertVO loginUser = WebPageUtils.getCurrentLoginedUser(request);
|
|
@@ -167,7 +167,7 @@ public class EventHandleController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/getChambList/{orderId}")
|
|
@GetMapping("/getChambList/{orderId}")
|
|
- @ApiOperation(tags = {"事件处理"},value = "主管家和改派管家列表查询")
|
|
|
|
|
|
+ @ApiOperation(tags = {"事件处理"},value = "主管家和改派管家列表查询 --二期新增")
|
|
public Result<List<ChamberlainVO>> getChambList(HttpServletRequest request,@RequestHeader("token") String token,@PathVariable("orderId") Long orderId){
|
|
public Result<List<ChamberlainVO>> getChambList(HttpServletRequest request,@RequestHeader("token") String token,@PathVariable("orderId") Long orderId){
|
|
List<ChamberlainVO> older = this.bmsEventOrderService.queryChambList(orderId);
|
|
List<ChamberlainVO> older = this.bmsEventOrderService.queryChambList(orderId);
|
|
return Result.success("查询成功!",older);
|
|
return Result.success("查询成功!",older);
|
|
@@ -298,7 +298,7 @@ public class EventHandleController {
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/getFreeKeeperList/{orderId}")
|
|
@GetMapping("/getFreeKeeperList/{orderId}")
|
|
- @ApiOperation(tags = {"事件处理"},value = "获取空闲管家列表")
|
|
|
|
|
|
+ @ApiOperation(tags = {"事件处理"},value = "获取空闲管家列表 --二期新增")
|
|
public Result<List<ChamberlainVO> > getFreeKeeperList(HttpServletRequest request,@RequestHeader("token") String token, @PathVariable("orderId") Long orderId){
|
|
public Result<List<ChamberlainVO> > getFreeKeeperList(HttpServletRequest request,@RequestHeader("token") String token, @PathVariable("orderId") Long orderId){
|
|
List<ChamberlainVO> chamberlainVOList = this.bmsEventOrderService.getFreeChamberlainList(orderId);
|
|
List<ChamberlainVO> chamberlainVOList = this.bmsEventOrderService.getFreeChamberlainList(orderId);
|
|
if (CollUtil.isNotEmpty(chamberlainVOList)) {
|
|
if (CollUtil.isNotEmpty(chamberlainVOList)) {
|
|
@@ -310,7 +310,7 @@ public class EventHandleController {
|
|
|
|
|
|
|
|
|
|
@PostMapping("/assignKeeper/{orderId}/{chambId}")
|
|
@PostMapping("/assignKeeper/{orderId}/{chambId}")
|
|
- @ApiOperation(tags = {"事件处理"},value = "指派管家")
|
|
|
|
|
|
+ @ApiOperation(tags = {"事件处理"},value = "指派管家 --二期新增")
|
|
public Result<Object> assignKeeper(HttpServletRequest request,@RequestHeader("token") String token,
|
|
public Result<Object> assignKeeper(HttpServletRequest request,@RequestHeader("token") String token,
|
|
@PathVariable("orderId") Long orderId,
|
|
@PathVariable("orderId") Long orderId,
|
|
@PathVariable("chambId") Long chambId){
|
|
@PathVariable("chambId") Long chambId){
|