Add Settlement Summary Report with net settlement calculation (BlazorServer only)#571
Merged
StuartFerguson merged 5 commits intomainfrom Jan 9, 2026
Merged
Conversation
Co-authored-by: StuartFerguson <[email protected]>
Co-authored-by: StuartFerguson <[email protected]>
Co-authored-by: StuartFerguson <[email protected]>
Copilot
AI
changed the title
[WIP] Add settlement summary report for merchants
Add Settlement Summary Report with net settlement calculation
Jan 8, 2026
Member
|
@copilot can you do all the changes in the blazor server app and nothing in the business logic project |
Co-authored-by: StuartFerguson <[email protected]>
Contributor
Author
Done! All Settlement Summary changes are now in the BlazorServer project only. I've removed the changes from BusinessLogic, BusinessLogic.Tests, and Testing projects, and added the handler to TestMediatorService. Changes in commit 34fa458:
The implementation is now entirely self-contained within the BlazorServer project. |
Copilot
AI
changed the title
Add Settlement Summary Report with net settlement calculation
Add Settlement Summary Report with net settlement calculation (BlazorServer only)
Jan 9, 2026
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.
Implements a settlement summary report showing per-merchant settlement outcomes with gross value, fees, and net settlement amounts. The report supports filtering by date range, merchant, and settlement status (pending, settled, failed).
All implementation is contained within the BlazorServer project - no changes to BusinessLogic project.
Data Model
SettlementSummaryModelinBlazorServer/Models/Models.cswith settlement period, merchant info, gross/net values, fees, and statusgross - feesper acceptance criteriaBlazorServer Implementation
GetSettlementSummaryQueryinBlazorServer/Requests/Requests.cswith optional filters for merchant and statusBlazorServer/Services/TestMediatorService.csgenerates mock data for testingUI (
SettlementSummary.razor)Implementation follows existing BlazorServer report patterns and does not depend on BusinessLogic project.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.