Skip to content

Commit

Permalink
[sc-19154] typo in non-deductible field in Bloomerang migration
Browse files Browse the repository at this point in the history
  • Loading branch information
brmeyer committed Jun 13, 2024
1 parent 2e51b72 commit 06f1e27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ private void processOpportunity(
SObject sfdcOpportunity = new SObject("Opportunity");
sfdcOpportunity.setField("npsp__Acknowledgment_Status__c", donationRow.get("AcknowledgementStatus"));
sfdcOpportunity.setField("Amount", donationRow.get("Amount"));
sfdcOpportunity.setField("Non_Deductible__c", donationRow.get("NonDeductable"));
sfdcOpportunity.setField("Non_Deductible__c", donationRow.get("NonDeductible"));
sfdcOpportunity.setField("Description", donationRow.get("Note"));
sfdcOpportunity.setField("npsp__Honoree_Name__c", donationRow.get("TributeName"));
sfdcOpportunity.setField("npsp__Tribute_Type__c", donationRow.get("TributeType"));
Expand Down

0 comments on commit 06f1e27

Please sign in to comment.