Commit 6fdd03862995583b6ab3ede6b569cbc3ad54d531

Authored by 张志伟
2 parents b3cb80bc 8571fd66

Merge remote-tracking branch 'origin/dev' into test

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/LeaveNeedDoBizService.java
... ... @@ -328,7 +328,7 @@ public class LeaveNeedDoBizService {
328 328 }
329 329 }
330 330 clearKey(key);
331   - BackLogItemDTO backLogItemDTO = new BackLogItemDTO(user.getUserId(), getLeave2doCode(), String.valueOf(leaveId), new Date());
  331 + BackLogItemDTO backLogItemDTO = new BackLogItemDTO(user.getUserId(), getLeave2doCode(), String.valueOf(leaveId), new Date(), null);
332 332 todoRpcService.complete(backLogItemDTO);
333 333 }
334 334  
... ... @@ -441,7 +441,7 @@ public class LeaveNeedDoBizService {
441 441 }
442 442  
443 443 private void push2Todo(Long id, Long userId) {
444   - BackLogItemDTO dto = new BackLogItemDTO(userId, getLeave2doCode(), String.valueOf(id), new Date());
  444 + BackLogItemDTO dto = new BackLogItemDTO(userId, getLeave2doCode(), String.valueOf(id), new Date(), null);
445 445 todoRpcService.push(dto);
446 446 }
447 447  
... ...
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/cust/AccidentPoolBizService.java
... ... @@ -173,7 +173,7 @@ public class AccidentPoolBizService {
173 173 }
174 174 for (FollowRecord record : list) {
175 175 record.setLimitTime(DateUtil.localDateTime2Date(LocalDateTime.now()));
176   - BackLogItemDTO dto = new BackLogItemDTO(record.getUserId(), getACCode(), String.valueOf(record.getId()), DateUtil.localDateTime2Date(LocalDateTime.now()));
  176 + BackLogItemDTO dto = new BackLogItemDTO(record.getUserId(), getACCode(), String.valueOf(record.getId()), DateUtil.localDateTime2Date(LocalDateTime.now()), record.getShopId());
177 177 todoRpcService.cancel(dto);
178 178 }
179 179 followRecordService.updateBatchById(list);
... ...