Merge remote-tracking branch 'origin/feat/dev_251201' into feat/dev_251201

This commit is contained in:
Moon
2025-12-22 18:23:59 +09:00

View File

@@ -193,18 +193,22 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
.orderBy(mapSheetMngEntity.mngYyyy.desc()) .orderBy(mapSheetMngEntity.mngYyyy.desc())
.fetch(); .fetch();
List<Integer> foundContent1 = List<Integer> foundContent1 =
queryFactory queryFactory
.select(mapSheetMngEntity.mngYyyy) .select(mapSheetMngEntity.mngYyyy)
.from(mapSheetMngEntity) .from(mapSheetMngEntity)
.where(mapSheetMngEntity.mngYyyy.ne(currentYear) .where(
.and(mapSheetMngEntity.mngState.ne("NOTYET") mapSheetMngEntity
.mngYyyy
.ne(currentYear)
.and(
mapSheetMngEntity
.mngState
.ne("NOTYET")
.or(mapSheetMngEntity.mngState.ne("DELETE")))) .or(mapSheetMngEntity.mngState.ne("DELETE"))))
.orderBy(mapSheetMngEntity.mngYyyy.desc()) .orderBy(mapSheetMngEntity.mngYyyy.desc())
.fetch(); .fetch();
// if( foundContentCurrent == null || foundContentCurrent.size() == 0) // if( foundContentCurrent == null || foundContentCurrent.size() == 0)
// { // {
// foundContent.add(currentYear); // foundContent.add(currentYear);