diff --git a/backend/lcfs/web/api/transaction/repo.py b/backend/lcfs/web/api/transaction/repo.py index 861b1e32b..7af5ed2f3 100644 --- a/backend/lcfs/web/api/transaction/repo.py +++ b/backend/lcfs/web/api/transaction/repo.py @@ -83,8 +83,9 @@ async def get_transactions_paginated( non_transfer_condition = and_( TransactionView.transaction_type != "Transfer", TransactionView.to_organization_id == organization_id, - TransactionView.status - == "Approved", # This status includes InitiativeAgreement and AdminAdjustment + TransactionView.status.in_( + ["Approved", "Assessed"] + ), ) # Combine conditions since an organization can be both transferor and transferee, or neither for non-"Transfer" transactions