diff --git a/Rock/Tasks/ProcessTransactionAlertActions.cs b/Rock/Tasks/ProcessTransactionAlertActions.cs index 1a242609268..4114b5b3fb3 100644 --- a/Rock/Tasks/ProcessTransactionAlertActions.cs +++ b/Rock/Tasks/ProcessTransactionAlertActions.cs @@ -81,8 +81,9 @@ public override void Execute( Message message ) var workflowAttributeValues = new Dictionary(); workflowAttributeValues.Add( nameof( FinancialTransactionAlert ), alert.Guid.ToString() ); workflowAttributeValues.Add( nameof( FinancialTransactionAlertType ), alertType.Guid.ToString() ); + workflowAttributeValues.Add( "FinancialTransactionId", alert.FinancialTransaction.Id.ToStringSafe() ); workflowAttributeValues.Add( nameof( Person ), person.Guid.ToString() ); - alert.LaunchWorkflow( alertType.WorkflowTypeId, string.Empty, workflowAttributeValues, null ); + alert.LaunchWorkflow( alertType.WorkflowTypeId, string.Empty, workflowAttributeValues, alert.PersonAliasId ); } // Add the person to a connection opportunity if configured diff --git a/RockWeb/Blocks/Finance/GivingAutomationConfiguration.ascx b/RockWeb/Blocks/Finance/GivingAutomationConfiguration.ascx index fd1f20a4b68..fe7d0119dd9 100644 --- a/RockWeb/Blocks/Finance/GivingAutomationConfiguration.ascx +++ b/RockWeb/Blocks/Finance/GivingAutomationConfiguration.ascx @@ -293,7 +293,7 @@
- +