Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
sunbird-lms-service
Commits
44a3477f
Unverified
Commit
44a3477f
authored
2 years ago
by
kamaleeswary
Committed by
GitHub
2 years ago
Browse files
Options
Download
Patches
Plain Diff
Issue #SB-30251 fix: Bulk org upload API(/api/org/v1/upload) issue (#1087)
parent
e274aeeb
release-4.10.1
release-4.10.0
release-4.10.1_RC1
release-4.10.0_RC5
release-4.10.0_RC4
release-4.10.0_RC3
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
service/src/main/java/org/sunbird/actor/bulkupload/OrgBulkUploadBackgroundJobActor.java
+6
-2
...ird/actor/bulkupload/OrgBulkUploadBackgroundJobActor.java
with
6 additions
and
2 deletions
+6
-2
service/src/main/java/org/sunbird/actor/bulkupload/OrgBulkUploadBackgroundJobActor.java
+
6
−
2
View file @
44a3477f
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets