You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
The system currently shows the total balance without deducting the “in reserve” portion on the frontend. We need to modify the logic to subtract the in reserve balance from the total balance, thereby presenting a realistic value for the usable balance.
Purpose and benefit to user:
Accurate displays of available credits prevent misunderstandings and improve user confidence in the data. Subtracting “in reserve” amounts allows stakeholders to see their actual usable credits at a glance.
Acceptance Criteria:
Given the user is viewing the organization’s balance, when the page loads, then the displayed balance correctly represents total_balance - reserved_balance.
Given the user interacts with any functionality that recalculates or refreshes the balance, then the front end continues to show the updated usable balance.
Development Checklist:
Calculate usable_balance by subtracting the in reserve balance from the total.
Display the resulting usable balance in all relevant UI components.
Conduct testing in the development and test environments to confirm the accuracy of displayed values.
Notes:
Ensure that any existing views or reports referencing balances align with this new calculation, and confirm that downstream calculations or actions rely on the updated values.
These are pages that display credit balance
BCeID header
BCeID dashboard
IDIR dashboard
IDIR organization page
IDIR transactions page (after using organization select list)
IDIR transfer page
The text was updated successfully, but these errors were encountered:
Description:
The system currently shows the total balance without deducting the “in reserve” portion on the frontend. We need to modify the logic to subtract the in reserve balance from the total balance, thereby presenting a realistic value for the usable balance.
Purpose and benefit to user:
Accurate displays of available credits prevent misunderstandings and improve user confidence in the data. Subtracting “in reserve” amounts allows stakeholders to see their actual usable credits at a glance.
Acceptance Criteria:
total_balance - reserved_balance
.Development Checklist:
usable_balance
by subtracting the in reserve balance from the total.Notes:
Ensure that any existing views or reports referencing balances align with this new calculation, and confirm that downstream calculations or actions rely on the updated values.
These are pages that display credit balance
The text was updated successfully, but these errors were encountered: