Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/update crf bap logic #357

Merged
merged 1 commit into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/client/src/utilities.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ type BapFormSubmission = {
Record_Type_Name__c:
| "CSB Funding Request"
| "CSB Payment Request"
| "CSB Closeout Request";
| "CSB Close Out Request";
Parent_CSB_Rebate__r: {
CSB_Funding_Request_Status__c: string;
CSB_Payment_Request_Status__c: string;
Expand Down Expand Up @@ -356,7 +356,7 @@ export function useSubmissionsQueries(rebateYear: RebateYear) {
? "frfs"
: submission.Record_Type_Name__c === "CSB Payment Request"
? "prfs"
: submission.Record_Type_Name__c === "CSB Closeout Request"
: submission.Record_Type_Name__c === "CSB Close Out Request"
? "crfs"
: null;

Expand Down
4 changes: 2 additions & 2 deletions app/server/app/routes/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ router.get("/formio/:rebateYear/:formType/:id", (req, res) => {
? Parent_CSB_Rebate__r?.CSB_Funding_Request_Status__c
: Record_Type_Name__c === "CSB Payment Request"
? Parent_CSB_Rebate__r?.CSB_Payment_Request_Status__c
: Record_Type_Name__c === "CSB Closeout Request"
: Record_Type_Name__c === "CSB Close Out Request"
? Parent_CSB_Rebate__r?.CSB_Closeout_Request_Status__c
: "",
},
Expand All @@ -125,7 +125,7 @@ router.get("/formio/:rebateYear/:formType/:id", (req, res) => {
const errorMessage = `Error getting ${rebateYear} ${formName} submission '${CSB_Form_ID__c}'.`;
return res.status(errorStatus).json({ message: errorMessage });
});
}
},
);
});

Expand Down
38 changes: 20 additions & 18 deletions app/server/app/utilities/bap.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ async function queryForSamEntities(req, email) {
PHYSICAL_ADDRESS_PROVINCE_OR_STATE__c: 1,
PHYSICAL_ADDRESS_ZIPPOSTAL_CODE__c: 1,
PHYSICAL_ADDRESS_ZIP_CODE_4__c: 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));
}
Expand Down Expand Up @@ -360,7 +360,7 @@ async function queryForBapFormSubmissionData(req, formType, rebateId, mongoId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand All @@ -374,7 +374,9 @@ async function queryForBapFormSubmissionData(req, formType, rebateId, mongoId) {
// CSB_Review_Item_ID__c,
// Parent_Rebate_ID__c,
// Record_Type_Name__c,
// Parent_CSB_Rebate__r.CSB_Funding_Request_Status__c
// Parent_CSB_Rebate__r.CSB_Funding_Request_Status__c,
// Parent_CSB_Rebate__r.CSB_Payment_Request_Status__c,
// Parent_CSB_Rebate__r.CSB_Closeout_Request_Status__c
// FROM
// ${BAP_FORMS_TABLE}
// WHERE
Expand All @@ -398,11 +400,11 @@ async function queryForBapFormSubmissionData(req, formType, rebateId, mongoId) {
CSB_Modified_Full_String__c: 1, // ISO 8601 date time string
CSB_Review_Item_ID__c: 1, // CSB Rebate ID with form/version ID (9 digits)
Parent_Rebate_ID__c: 1, // CSB Rebate ID (6 digits)
Record_Type_Name__c: 1, // 'CSB Funding Request' | 'CSB Payment Request' | 'CSB Closeout Request'
Record_Type_Name__c: 1, // 'CSB Funding Request' | 'CSB Payment Request' | 'CSB Close Out Request'
"Parent_CSB_Rebate__r.CSB_Funding_Request_Status__c": 1,
"Parent_CSB_Rebate__r.CSB_Payment_Request_Status__c": 1,
"Parent_CSB_Rebate__r.CSB_Closeout_Request_Status__c": 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand Down Expand Up @@ -446,7 +448,7 @@ async function queryForBapFormSubmissionsStatuses(req, comboKeys) {
{
// "*": 1,
Parent_Rebate_ID__c: 1, // CSB Rebate ID (6 digits)
}
},
)
.sort({ CreatedDate: -1 })
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -491,11 +493,11 @@ async function queryForBapFormSubmissionsStatuses(req, comboKeys) {
CSB_Modified_Full_String__c: 1, // ISO 8601 date time string
CSB_Review_Item_ID__c: 1, // CSB Rebate ID with form/version ID (9 digits)
Parent_Rebate_ID__c: 1, // CSB Rebate ID (6 digits)
Record_Type_Name__c: 1, // 'CSB Funding Request' | 'CSB Payment Request' | 'CSB Closeout Request'
Record_Type_Name__c: 1, // 'CSB Funding Request' | 'CSB Payment Request' | 'CSB Close Out Request'
"Parent_CSB_Rebate__r.CSB_Funding_Request_Status__c": 1,
"Parent_CSB_Rebate__r.CSB_Payment_Request_Status__c": 1,
"Parent_CSB_Rebate__r.CSB_Closeout_Request_Status__c": 1,
}
},
)
.sort({ CreatedDate: -1 })
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -539,7 +541,7 @@ async function queryBapForPRFData(req, frfReviewItemId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -598,7 +600,7 @@ async function queryBapForPRFData(req, frfReviewItemId) {
School_District_Prioritized__c: 1,
Total_Rebate_Funds_Requested__c: 1,
Total_Infrastructure_Funds__c: 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand All @@ -623,7 +625,7 @@ async function queryBapForPRFData(req, frfReviewItemId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -660,7 +662,7 @@ async function queryBapForPRFData(req, frfReviewItemId) {
CSB_Fuel_Type__c: 1,
CSB_Replacement_Fuel_Type__c: 1,
CSB_Funds_Requested__c: 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand Down Expand Up @@ -705,7 +707,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -752,7 +754,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
Fleet_Contact_Email__c: 1,
"School_District_Contact__r.FirstName": 1,
"School_District_Contact__r.LastName": 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand All @@ -775,7 +777,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -854,7 +856,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
Total_Level_2_Charger_Costs__c: 1,
Total_DC_Fast_Charger_Costs__c: 1,
Total_Other_Infrastructure_Costs__c: 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand All @@ -879,7 +881,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
{
// "*": 1,
Id: 1, // Salesforce record ID
}
},
)
.limit(1)
.execute(async (err, records) => ((await err) ? err : records));
Expand Down Expand Up @@ -936,7 +938,7 @@ async function queryBapForCRFData(req, frfReviewItemId, prfReviewItemId) {
New_Bus_GVWR__c: 1,
New_Bus_Rebate_Amount__c: 1,
New_Bus_Purchase_Price__c: 1,
}
},
)
.execute(async (err, records) => ((await err) ? err : records));

Expand Down
Loading