Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,25 @@ private void registerIntegrationMap(MapperFactory mapperFactory) {
classMap.field("badgeAwarded", "BadgeAwarded__c");
classMap.field("description", "Description__c");
classMap.field("level", "Level__c");
classMap.field("stage", "Integration_Stage__c");
classMap.customize(new CustomMapper<Integration, JSONObject>() {
@Override
public void mapBtoA(JSONObject b, Integration a, MappingContext context) {

// Filter the stage
try {
String integrationStage = b.getString("Integration_Stage__c");
switch(integrationStage) {
case "In Development":
case "Complete":
case "Certified Service Provider":
case "None Planned":
a.setStage(integrationStage);
break;
}
} catch(Exception e) {
// Nothing to handle
}

JSONObject opportunitiesObject = b.optJSONObject("Achievements__r");
if (opportunitiesObject != null) {
JSONArray recordsArray = opportunitiesObject.optJSONArray("records");
Expand Down