-
Notifications
You must be signed in to change notification settings - Fork 1
fix: 파트별 평가기준 카운트 로직 수정 #170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,3 +49,4 @@ out/ | |
| .DS_Store | ||
| **/.DS_Store | ||
| /keys/ | ||
| /docs/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: WITHUS-K/WITHUS-BE
Length of output: 252
🏁 Script executed:
Repository: WITHUS-K/WITHUS-BE
Length of output: 2429
🏁 Script executed:
Repository: WITHUS-K/WITHUS-BE
Length of output: 44
🏁 Script executed:
Repository: WITHUS-K/WITHUS-BE
Length of output: 4146
organizationRole이 null일 때 역할 기반 기준이 완전히 제외되는 문제 확인됨.Application.organizationRole필드에는@NotNull또는@NonNull제약이 없어 null이 될 수 있습니다.matchesOrganizationRole()메서드를 보면appRole == null일 때false를 반환하므로, 역할이 지정된 모든 기준이 필터링되어documentCriteriaCount가 0이 될 수 있습니다. 이는documentMaxScore와 평가 완료 여부 판단 로직에 직접 영향을 미칩니다. 다음 중 하나를 고려해주세요:organizationRole필드에@NotNull제약 추가appRole이 null일 때 필터 로직 조정🤖 Prompt for AI Agents