李昊 4 년 전
부모
커밋
a8f8805e2f
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      GxPress/Service/GxPress.Service.Implement/Flow/FlowService.Get.cs

+ 4 - 1
GxPress/Service/GxPress.Service.Implement/Flow/FlowService.Get.cs

@@ -80,7 +80,10 @@ namespace GxPress.Service.Implement
         public async Task<FlowResult> GetFlowResult(int todoId, int userId = 0)
         {
             var flowId = 0;
-            var flowTodeDto = await _flowTodoRepository.GetAsync(todoId);
+            var query = Q.NewQuery();
+            query.Where(nameof(Entity.WorkFlow.FlowTodo.Id), todoId);
+            query.Where(nameof(Entity.WorkFlow.FlowTodo.UserId), userId);
+            var flowTodeDto = await _flowTodoRepository.GetAsync(query);
             if (flowTodeDto != null)
                 flowId = flowTodeDto.FlowId;
             else