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
d6fc020c
Unverified
Commit
d6fc020c
authored
2 years ago
by
Nivetha-M
Committed by
GitHub
2 years ago
Browse files
Options
Download
Patches
Plain Diff
Org bulk upload- subtype fix (#1083)
Co-authored-by:
nivetha
<
nivetha.mariappan@tarento.com
>
parent
5fee30b8
release-4.9.0
release-4.9.0_RC3
release-4.9.0_RC2
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 @
d6fc020c
...
...
@@ -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