Browse Source

修改 已终止 文案

weiximei 6 years ago
parent
commit
ef77d30ce5

+ 4
- 0
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/TaUserServiceImpl.java View File

463
         // 下发门禁权限
463
         // 下发门禁权限
464
         HKOpenApi.downloadAuthorityByDeviceUuids();
464
         HKOpenApi.downloadAuthorityByDeviceUuids();
465
 
465
 
466
+        if ("0".equals(response.getCode())) {
467
+            response.addSuccess(user);
468
+        }
469
+
466
         return response;
470
         return response;
467
     }
471
     }
468
 
472
 

+ 2
- 1
CODE/smart-community/app-api/src/main/java/com/community/huiju/service/impl/TicketServiceImpl.java View File

354
             tpTicketRecord.setStatus("6");
354
             tpTicketRecord.setStatus("6");
355
             tpTicketRecord.setTicketId(ticketId);
355
             tpTicketRecord.setTicketId(ticketId);
356
             tpTicketRecord.setCommunityId(communityId);
356
             tpTicketRecord.setCommunityId(communityId);
357
-            //TODO
357
+
358
+            tpTicketRecord.setContent("您的联系单已被您自己终止,如果仍有问题,可以在服务页新增一个报修/投诉/联系单");
358
             tpTicketRecord.setCreateUser(userId);
359
             tpTicketRecord.setCreateUser(userId);
359
             tpTicketRecord.setCreateDate(new Date());
360
             tpTicketRecord.setCreateDate(new Date());
360
             tpTicketRecordMapper.insertSelective(tpTicketRecord);
361
             tpTicketRecordMapper.insertSelective(tpTicketRecord);