Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Automated PR Validation FeedbackAll Checks Passed!
Ready for maintainer review! |
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.
Specification:
HTTP Endpoint: GET /api/v1/rewards/{id}/analytics
Query Parameters: RewardTransactionFilterQueryDto (dateFrom, dateTo, timelinePeriod [Monthly/Weekly], searchTerm, pageNumber, pageSize)
Response: RewardAnalyticsDto (200 OK)
Authorization: Requires RewardManagement.View permission or HRAdmin/Admin/SuperAdmin role.
CQRS & Endpoint Logic:
Define GetRewardAnalyticsQuery record with Id and RewardTransactionFilterQueryDto.
Verify RewardItem exists (throw 404 if missing).
Aggregate Redemption Rate Timeline:
Query RewardRedemptions for reward within date bounds (default: trailing 6 months).
Group records by calendar month (or week if timelinePeriod == "Weekly").
Project into RedemptionTimelinePointDto (PeriodLabel, DateFrom, DateTo, RedemptionCount, TotalPointsSpent).
Query Paginated Reward Transactions Ledger:
Query RewardRedemptions for reward eager loading Employee, Department, and RewardVoucher.
Filter by searchTerm (employee name, employee code, voucher code).
Order by RedeemedAt DESC, apply pagination (.Skip().Take()).
Project to RewardTransactionItemDto formatting employee details, voucher code, timestamp, and points deducted.
Assemble and return RewardAnalyticsDto.
Implement Controller action GetRewardAnalytics in RewardsController.cs calling _mediator.Send(query).