[Library | Trunk]: SearchResultService: Add an if condition to check if pid exists on the results

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@58450 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2020-04-09 09:40:54 +00:00
parent 086a9d045b
commit 2940114ff5
1 changed files with 7 additions and 5 deletions

View File

@ -169,6 +169,7 @@ export class SearchResearchResultsService {
this.parsingFunctions.parseTypes(result.types, types, instance);
}
/////////////////////////// Athena Code ///////////////////////////
if(resData['pid']) {
for(let i=0; i<resData['pid'].length; i++){
if(resData['pid'][i].classid == 'doi'){
if(resData['pid'][i].content != '' && resData['pid'][i].content != null){
@ -177,6 +178,7 @@ export class SearchResearchResultsService {
}
}
}
}
/////////////////////////// Athena Code ///////////////////////////
if(resData['programmingLanguage'] && resData['programmingLanguage'] != null) {
result.programmingLanguages = new Array<string>();