Fix executive responsibility change handling #161
Merged
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.
Summary
Problem
In PDF sample891, 弓納持弘 had a responsibility change from 有限責任社員 (limited liability partner) to 無限責任社員 (unlimited liability partner). The parser was not properly detecting this change across different executive sections, resulting in the person appearing in both positions.
Solution
parse_body.go:67): ExtendedgetResignedAt()to recognize responsibility changes as a type of status changehoujin_body.go:46-119): ModifiedGetHoujinExecutives()to collect all executives first, then apply post-processing across all sectionshoujin_body.go:46-87): CreatedpostProcessResponsibilityChangesGlobal()to invalidate limited liability partner entries when the same person becomes an unlimited liability partnerTest Results
make annotate TARGET=sample891now correctly shows only 無限責任社員 for 弓納持弘make test)Test plan
make annotate TARGET=sample891to verify the fixmake testto ensure no regressions🤖 Generated with Claude Code