|
|
@ -11,7 +11,6 @@ import com.ruoyi.process.todoitem.mapper.BizTodoItemMapper; |
|
|
|
import com.ruoyi.process.todoitem.service.IBizTodoItemService; |
|
|
|
import com.ruoyi.system.mapper.SysUserMapper; |
|
|
|
import org.activiti.engine.TaskService; |
|
|
|
import org.activiti.engine.impl.util.CollectionUtil; |
|
|
|
import org.activiti.engine.task.Task; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -19,7 +18,6 @@ import org.springframework.stereotype.Service; |
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
import org.springframework.util.CollectionUtils; |
|
|
|
|
|
|
|
import java.util.Collections; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
@ -222,7 +220,7 @@ public class BizTodoItemServiceImpl implements IBizTodoItemService { |
|
|
|
|
|
|
|
// todoitem 去重
|
|
|
|
List<BizTodoItem> bizTodoItem = bizTodoItemMapper.selectTodoItemByTaskId(task.getId(),"0"); |
|
|
|
if (!CollectionUtils.isEmpty(bizTodoItem)) continue; |
|
|
|
if (bizTodoItem != null) continue; |
|
|
|
|
|
|
|
BizTodoItem newItem = new BizTodoItem(); |
|
|
|
BeanUtils.copyProperties(todoItem, newItem); |
|
|
|