학습데이터 라벨링 현황 건수 조건 수정, 라벨러, 검수자 목록 수정

This commit is contained in:
2026-02-05 18:00:52 +09:00
parent 3237863542
commit 533d97a573
2 changed files with 27 additions and 14 deletions

View File

@@ -556,8 +556,8 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
mapSheetAnalInferenceEntity.uuid.eq(targetUuid), mapSheetAnalInferenceEntity.uuid.eq(targetUuid),
mapSheetAnalDataInferenceGeomEntity.pnu.isNotNull() mapSheetAnalDataInferenceGeomEntity.pnu.isNotNull()
// mapSheetAnalDataInferenceGeomEntity.pnu.gt(0L), // mapSheetAnalDataInferenceGeomEntity.pnu.gt(0L),
// mapSheetAnalDataInferenceGeomEntity.passYn.isFalse() //TODO: 추후 라벨링 //
// 대상 조건 수정하기 // mapSheetAnalDataInferenceGeomEntity.fitState.eq(ImageryFitStatus.UNFIT.getId())
) )
.fetchOne(); .fetchOne();
} }
@@ -575,8 +575,7 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
queryFactory queryFactory
.select(labelingAssignmentEntity.count()) .select(labelingAssignmentEntity.count())
.from(labelingAssignmentEntity) .from(labelingAssignmentEntity)
.where( .where(analUidCondition, labelingAssignmentEntity.workState.in("SKIP", "DONE"))
analUidCondition, labelingAssignmentEntity.workState.in("ASSIGNED", "SKIP", "DONE"))
.fetchOne(); .fetchOne();
Long skipCount = Long skipCount =
@@ -601,6 +600,13 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
.where(analUidCondition, labelingAssignmentEntity.inspectState.eq("COMPLETE")) .where(analUidCondition, labelingAssignmentEntity.inspectState.eq("COMPLETE"))
.fetchOne(); .fetchOne();
Long inspectionExcept =
queryFactory
.select(labelingAssignmentEntity.count())
.from(labelingAssignmentEntity)
.where(analUidCondition, labelingAssignmentEntity.inspectState.eq("EXCEPT"))
.fetchOne();
Long inspectorCount = Long inspectorCount =
queryFactory queryFactory
.select(labelingAssignmentEntity.inspectorUid.countDistinct()) .select(labelingAssignmentEntity.inspectorUid.countDistinct())
@@ -613,6 +619,7 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
long labelCompleted = labelingCompleted != null ? labelingCompleted : 0L; long labelCompleted = labelingCompleted != null ? labelingCompleted : 0L;
long inspectCompleted = inspectionCompleted != null ? inspectionCompleted : 0L; long inspectCompleted = inspectionCompleted != null ? inspectionCompleted : 0L;
long skipped = skipCount != null ? skipCount : 0L; long skipped = skipCount != null ? skipCount : 0L;
long inspectExcepted = inspectionExcept != null ? inspectionExcept : 0L;
long labelingRemaining = labelingTotal - labelCompleted - skipped; long labelingRemaining = labelingTotal - labelCompleted - skipped;
if (labelingRemaining < 0) { if (labelingRemaining < 0) {
@@ -620,7 +627,7 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
} }
long inspectionTotal = labelingTotal; long inspectionTotal = labelingTotal;
long inspectionRemaining = inspectionTotal - inspectCompleted - skipped; long inspectionRemaining = inspectionTotal - inspectCompleted - inspectExcepted;
if (inspectionRemaining < 0) { if (inspectionRemaining < 0) {
inspectionRemaining = 0; inspectionRemaining = 0;
} }
@@ -657,7 +664,7 @@ public class LabelAllocateRepositoryImpl implements LabelAllocateRepositoryCusto
.inspectionStatus(inspectionStatus) .inspectionStatus(inspectionStatus)
.inspectionTotalCount(inspectionTotal) .inspectionTotalCount(inspectionTotal)
.inspectionCompletedCount(inspectCompleted) .inspectionCompletedCount(inspectCompleted)
.inspectionSkipCount(skipped) // TODO .inspectionSkipCount(inspectExcepted)
.inspectionRemainingCount(inspectionRemaining) .inspectionRemainingCount(inspectionRemaining)
.inspectorCount(inspectorCount != null ? inspectorCount : 0L) .inspectorCount(inspectorCount != null ? inspectorCount : 0L)
.progressRate(labelingRate) .progressRate(labelingRate)

View File

@@ -294,14 +294,14 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
if (searchReq.getSearchVal() != null && !searchReq.getSearchVal().isEmpty()) { if (searchReq.getSearchVal() != null && !searchReq.getSearchVal().isEmpty()) {
whereSubBuilder.and( whereSubBuilder.and(
Expressions.stringTemplate("{0}", memberEntity.userId) Expressions.stringTemplate("{0}", memberEntity.employeeNo)
.likeIgnoreCase("%" + searchReq.getSearchVal() + "%") .likeIgnoreCase("%" + searchReq.getSearchVal() + "%")
.or( .or(
Expressions.stringTemplate("{0}", memberEntity.name) Expressions.stringTemplate("{0}", memberEntity.name)
.likeIgnoreCase("%" + searchReq.getSearchVal() + "%"))); .likeIgnoreCase("%" + searchReq.getSearchVal() + "%")));
} }
whereSubBuilder.and(labelingAssignmentEntity.workerUid.eq(memberEntity.userId)); whereSubBuilder.and(labelingAssignmentEntity.workerUid.eq(memberEntity.employeeNo));
// 공통 조건 추출 // 공통 조건 추출
BooleanExpression doneStateCondition = BooleanExpression doneStateCondition =
@@ -344,7 +344,7 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
WorkerState.class, WorkerState.class,
memberEntity.userRole, memberEntity.userRole,
memberEntity.name, memberEntity.name,
memberEntity.userId, memberEntity.employeeNo,
assignedCnt.as("assignedCnt"), assignedCnt.as("assignedCnt"),
doneCnt.as("doneCnt"), doneCnt.as("doneCnt"),
skipCnt.as("skipCnt"), skipCnt.as("skipCnt"),
@@ -363,7 +363,10 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
.on(whereSubBuilder) .on(whereSubBuilder)
.where(whereBuilder) .where(whereBuilder)
.groupBy( .groupBy(
memberEntity.userRole, memberEntity.name, memberEntity.userId, memberEntity.status) memberEntity.userRole,
memberEntity.name,
memberEntity.employeeNo,
memberEntity.status)
.orderBy(orderSpecifiers.toArray(new OrderSpecifier[0])) .orderBy(orderSpecifiers.toArray(new OrderSpecifier[0]))
.offset(pageable.getOffset()) .offset(pageable.getOffset())
.limit(pageable.getPageSize()) .limit(pageable.getPageSize())
@@ -441,14 +444,14 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
if (searchReq.getSearchVal() != null && !searchReq.getSearchVal().isEmpty()) { if (searchReq.getSearchVal() != null && !searchReq.getSearchVal().isEmpty()) {
whereSubBuilder.and( whereSubBuilder.and(
Expressions.stringTemplate("{0}", memberEntity.userId) Expressions.stringTemplate("{0}", memberEntity.employeeNo)
.likeIgnoreCase("%" + searchReq.getSearchVal() + "%") .likeIgnoreCase("%" + searchReq.getSearchVal() + "%")
.or( .or(
Expressions.stringTemplate("{0}", memberEntity.name) Expressions.stringTemplate("{0}", memberEntity.name)
.likeIgnoreCase("%" + searchReq.getSearchVal() + "%"))); .likeIgnoreCase("%" + searchReq.getSearchVal() + "%")));
} }
whereSubBuilder.and(labelingAssignmentEntity.inspectorUid.eq(memberEntity.userId)); whereSubBuilder.and(labelingAssignmentEntity.inspectorUid.eq(memberEntity.employeeNo));
// 공통 조건 추출 // 공통 조건 추출
BooleanExpression doneStateCondition = BooleanExpression doneStateCondition =
@@ -492,7 +495,7 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
WorkerState.class, WorkerState.class,
memberEntity.userRole, memberEntity.userRole,
memberEntity.name, memberEntity.name,
memberEntity.userId, memberEntity.employeeNo,
assignedCnt.as("assignedCnt"), assignedCnt.as("assignedCnt"),
doneCnt.as("doneCnt"), doneCnt.as("doneCnt"),
skipCnt.as("skipCnt"), skipCnt.as("skipCnt"),
@@ -511,7 +514,10 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
.on(whereSubBuilder) .on(whereSubBuilder)
.where(whereBuilder) .where(whereBuilder)
.groupBy( .groupBy(
memberEntity.userRole, memberEntity.name, memberEntity.userId, memberEntity.status) memberEntity.userRole,
memberEntity.name,
memberEntity.employeeNo,
memberEntity.status)
.orderBy(orderSpecifiers.toArray(new OrderSpecifier[0])) .orderBy(orderSpecifiers.toArray(new OrderSpecifier[0]))
.offset(pageable.getOffset()) .offset(pageable.getOffset())
.limit(pageable.getPageSize()) .limit(pageable.getPageSize())