Skip to content

Commit

Permalink
+ (Finance) Fixed a bug with data on the TransactionList block. (Fixes
Browse files Browse the repository at this point in the history
…#5312)

EntityTypeId = a.EntityId should have been EntityTypeId = a.EntityTypeId

(cherry picked from commit 655dd61)
  • Loading branch information
notGerryMiller authored and shauncummings committed Apr 14, 2023
1 parent 28942d5 commit c53250f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RockWeb/Blocks/Finance/TransactionList.ascx.cs
Expand Up @@ -1624,7 +1624,7 @@ private void BindGrid( bool isExporting = false )
AccountId = a.AccountId,
Amount = a.Amount,
EntityId = a.EntityId,
EntityTypeId = a.EntityId
EntityTypeId = a.EntityTypeId
},
Summary = a.Transaction.FutureProcessingDateTime.HasValue ? "[charge pending] " + a.Summary : a.Transaction.Summary,
FinancialPaymentDetail = new PaymentDetailInfo
Expand Down Expand Up @@ -2291,4 +2291,4 @@ private class PersonDetail
public string FullName { get; set; }
}
}
}
}

0 comments on commit c53250f

Please sign in to comment.