From 655dd61e4ed01812a51760282da1d4923a8f1e86 Mon Sep 17 00:00:00 2001 From: notGerryMiller <53865308+notGerryMiller@users.noreply.github.com> Date: Fri, 14 Apr 2023 12:15:49 -0400 Subject: [PATCH] + (Finance) Fixed a bug with data on the TransactionList block. (Fixes #5312) EntityTypeId = a.EntityId should have been EntityTypeId = a.EntityTypeId --- RockWeb/Blocks/Finance/TransactionList.ascx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RockWeb/Blocks/Finance/TransactionList.ascx.cs b/RockWeb/Blocks/Finance/TransactionList.ascx.cs index aed65237887..accdc4f31cf 100644 --- a/RockWeb/Blocks/Finance/TransactionList.ascx.cs +++ b/RockWeb/Blocks/Finance/TransactionList.ascx.cs @@ -1625,7 +1625,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 @@ -2295,4 +2295,4 @@ private class PersonDetail public string FullName { get; set; } } } -} \ No newline at end of file +}