-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: import orgUnitGroupMember using csv (#18734)
- Loading branch information
1 parent
1ca4b4b
commit 0ee87ec
Showing
5 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
dhis-2/dhis-test-integration/src/test/resources/metadata/organisationUnitGroup.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name,uid,code,shortName | ||
"group1","a1234567890","G1","Group1" | ||
"group2","b1234567890","G2","Group2" |
5 changes: 5 additions & 0 deletions
5
dhis-2/dhis-test-integration/src/test/resources/metadata/organisationUnitGroup_members.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
groupid,memberid | ||
a1234567890,c1234567890 | ||
a1234567890,d1234567890 | ||
b1234567890,e1234567890 | ||
b1234567890,f1234567890 |
5 changes: 5 additions & 0 deletions
5
dhis-2/dhis-test-integration/src/test/resources/metadata/organisationUnitMembers.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
name,uid,code,parent,shortName | ||
"Level 2a","c1234567890","L2a","","L2a" | ||
"Level 2b","d1234567890","L2b","c1234567890","L2b" | ||
"Level 3","e1234567890","L3","","L3" | ||
"Level 4","f1234567890","L4","e1234567890","L4" |