Unverified Commit 44a3477f authored by kamaleeswary's avatar kamaleeswary Committed by GitHub
Browse files

Issue #SB-30251 fix: Bulk org upload API(/api/org/v1/upload) issue (#1087)

Showing with 6 additions and 2 deletions
+6 -2
......@@ -202,7 +202,9 @@ public class OrgBulkUploadBackgroundJobActor extends BaseBulkUploadBackgroundJob
row.put(JsonKey.LOCATION_CODE, locationCodes);
String orgId;
row.put(JsonKey.ORG_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationType()));
row.put(JsonKey.ORG_SUB_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationSubType()));
if (org.getOrganisationSubType() != null) {
row.put(JsonKey.ORG_SUB_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationSubType()));
}
try {
orgId =
upsertOrg(
......@@ -242,7 +244,9 @@ public class OrgBulkUploadBackgroundJobActor extends BaseBulkUploadBackgroundJob
Map<String, Object> row = mapper.convertValue(org, Map.class);
row.put(JsonKey.LOCATION_CODE, locationCodes);
row.put(JsonKey.ORG_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationType()));
row.put(JsonKey.ORG_SUB_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationSubType()));
if (org.getOrganisationSubType() != null) {
row.put(JsonKey.ORG_SUB_TYPE, OrgTypeValidator.getInstance().getTypeByValue(org.getOrganisationSubType()));
}
try {
row.put(JsonKey.ORGANISATION_ID, org.getId());
upsertOrg(organisationManagementActor, row, ActorOperations.UPDATE_ORG.getValue(), context);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment