participant project contribution #223

Merged
claudio.atzori merged 5 commits from project_organization_contribution into beta 2022-07-28 12:16:30 +02:00
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 60e4fbd78b - Show all commits

View File

@ -584,7 +584,12 @@ object DataciteToOAFTransformation {
JField("awardUri", JString(awardUri)) <- fundingReferences
} yield awardUri
val oid = result.getId
result.setId(IdentifierFactory.createIdentifier(result))
if (!result.getId.equalsIgnoreCase(oid)) {
result.getOriginalId.add(oid)
}
var relations: List[Relation] =
awardUris.flatMap(a => get_projectRelation(a, result.getId)).filter(r => r != null)