Browse Source

合并代码

wangbo 4 years ago
parent
commit
03e5b62d1a

+ 1 - 1
operation_manager/src/main/java/com/huaxu/order/controller/WorkOrderManageController.java

@@ -434,7 +434,7 @@ public class WorkOrderManageController {
     public AjaxMessage<Object> selectOrderUserByOrgId(
             @ApiParam(value = "机构ID", required = true) @RequestParam(required = true) String ids){
         List<Map<String,Object>> result = new ArrayList<>();
-        AjaxMessage<List<UserEntity>> listAjaxMessage = userCenterClient.findUserIdsByOrgId(ids);
+        AjaxMessage<List<UserEntity>> listAjaxMessage = userCenterClient.findUserIdsByOrgId(String.format("[%]",ids));
         for(UserEntity userEntity : listAjaxMessage.getData()){
             try {
                 Map<String, Object> orderStatusMap = workOrderManageService.selectOrderUserStatus(userEntity.getId().toString());