We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82459aa commit 03b203eCopy full SHA for 03b203e
src/services/salesforceService.js
@@ -102,7 +102,9 @@ class SalesforceService {
102
null, // fallback to null if cannot parse
103
),
104
markup: _.get(o, config.get('sfdcBillingAccountMarkupField')),
105
- active: _.get(o, config.get('sfdcBillingAccountActiveField')),
+ active: _.get(o, config.get('sfdcBillingAccountActiveField')),
106
+ startDate: _.get(o, 'Topcoder_Billing_Account__r.Start_Date__c'),
107
+ endDate: _.get(o, 'Topcoder_Billing_Account__r.End_Date__c'),
108
}));
109
return billingAccounts.length > 0 ? billingAccounts[0] : {};
110
});
0 commit comments