master #59

Closed
claudio.atzori wants to merge 3221 commits from master into stable_ids
1 changed files with 5 additions and 0 deletions
Showing only changes of commit ed98a6d9d0 - 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)