projectInfo 조회 추가
This commit is contained in:
@@ -118,8 +118,10 @@ public class LabelAllocateService {
|
||||
public WorkerListResponse getWorkerStatistics(
|
||||
Long analUid, String workerType, String search, String sortType) {
|
||||
|
||||
// 프로젝트 정보 조회 (analUid가 있을 때만)
|
||||
var projectInfo = labelAllocateCoreService.findProjectInfo(analUid);
|
||||
// 프로젝트 정보 조회 (analUid가 없으면 최신 프로젝트 정보 조회)
|
||||
var projectInfo = analUid != null
|
||||
? labelAllocateCoreService.findProjectInfo(analUid)
|
||||
: labelAllocateCoreService.findLatestProjectInfo();
|
||||
|
||||
// 작업 진행 현황 조회
|
||||
var progressInfo = labelAllocateCoreService.findWorkProgressInfo(analUid);
|
||||
|
||||
Reference in New Issue
Block a user