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
  • Loading branch information
notGerryMiller committed Apr 14, 2023
1 parent 8946f68 commit 655dd61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RockWeb/Blocks/Finance/TransactionList.ascx.cs
Expand Up @@ -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
Expand Down Expand Up @@ -2295,4 +2295,4 @@ private class PersonDetail
public string FullName { get; set; }
}
}
}
}

0 comments on commit 655dd61

Please sign in to comment.