Skip to content

Commit

Permalink
Update value passed in new 2023 PRF as the _bap_applicant_organizatio…
Browse files Browse the repository at this point in the history
…n_id to be the Salesforce record id of the Applicant_Organization__r record (and not the Salesforce record id from the SAM.gov entity record)
  • Loading branch information
courtneymyers committed Oct 25, 2024
1 parent 5dd0d03 commit df2a8d0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/server/app/utilities/formio.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ function fetchDataForPRFSubmission({ rebateYear, req, res }) {
} = req.body;

const {
Id: entityId,
UNIQUE_ENTITY_ID__c,
ENTITY_EFT_INDICATOR__c,
LEGAL_BUSINESS_NAME__c,
Expand Down Expand Up @@ -438,7 +437,7 @@ function fetchDataForPRFSubmission({ rebateYear, req, res }) {
_bap_applicant_name: name,
_bap_applicant_efti: ENTITY_EFT_INDICATOR__c || "0000",
_bap_applicant_uei: UNIQUE_ENTITY_ID__c,
_bap_applicant_organization_id: entityId,
_bap_applicant_organization_id: Applicant_Organization__r?.Id,
_bap_applicant_organization_name: LEGAL_BUSINESS_NAME__c,
_bap_applicant_street_address_1: PHYSICAL_ADDRESS_LINE_1__c,
_bap_applicant_street_address_2: PHYSICAL_ADDRESS_LINE_2__c,
Expand Down

0 comments on commit df2a8d0

Please sign in to comment.