Open
Conversation
- Create new HMIS 105 report module with data aggregation by age groups and delivery modes - Implement date range filtering with start/end date pickers - Add Excel export functionality for report data - Create ViewModel with LiveData for reactive state management - Add Repository layer for data fetching and aggregation - Implement RecyclerView adapter for tabular display - Create HorizontalScrollView layout for wide table - Add HMIS 105 button to Reports Overview - Register HmisMalaria105FlowActivity in AndroidManifest - Add string resources for UI text - Fix all resource linking errors (dimensions and colors) Age groups: 0-11mo, 12-59mo, 5-14yr Delivery modes: Static, Outreach, School Follows MVVM architecture and integrates seamlessly with existing Reports.
- Fix resource leak: Wrap HSSFWorkbook with .use{} for proper cleanup
- Replace raw exception messages with user-friendly string resources
- Add header row handling in adapter (hide numeric columns for headers)
- Update Excel export to skip numeric cells for section headers
- Remove unused string resources (start_date, end_date, select_date, etc.)
- Rename string resources for consistency: _1_4_yrs_* → age_1_4_yrs_*, _5_14_yrs_* → age_5_14_yrs_*
- Fix text dimension mismatches in dimens.xml (text_9, text_10, text_15)
- Remove unused Hmis105ObservationDTO.kt file
- Optimize performance: reduce participant fetching from O(2n) to O(n)
- Update all layout files to use renamed string resources
- Add missing import for Hmis105ReportDTO in Fragment
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Pull request overview
Adds a new HMIS 105 report flow to the Reports Overview area, including UI layouts for multiple screen sizes, a ViewModel to assemble report rows from visits, and Excel export support via the existing
FileUtilexport mechanism.Changes: