Merge branch 'developer' of bitbucket.org:equilibriumito/gabinete-digital into developer

This commit is contained in:
Peter Maquiran
2022-05-12 16:58:18 +01:00
3 changed files with 50 additions and 23 deletions
+1 -1
View File
@@ -141,7 +141,7 @@
<!-- most searched word-->
<div class="most-searched-words d-md-flex flex-md-column">
<p class="title ion-text-center">Assuntos mais recebidos</p>
<p class="title ion-text-center">{{searchResult}}</p>
<div class="most-searched-word-container height-100 overflow-y-auto">
</div>
</div>
+46 -22
View File
@@ -37,6 +37,7 @@ export class SearchPage implements OnInit {
showLoader: boolean;
currentPath: string
searchResult = "Assuntos mais recebidos";
// See http://idangero.us/swiper/api/ for valid options.
slideOpts = {
@@ -219,29 +220,31 @@ export class SearchPage implements OnInit {
this.search.basicSearch(this.searchSubject, this.searchDocumentDate, this.searchSender
,this.searchOrganicEntiry, this.searchDocTypeId, '0').subscribe(res=>{
res.Categories.forEach( e => {
e['Active'] = false;
});
// bind respose
this.searchCategories = res.Categories;
this.searchDocuments = this.sortArrayISODate(res.Documents);
this.reorderList(this.ordinance);
// hide show document
if(this.searchDocuments.length >= 1){
this.showDocuments = true;
} else {
this.showDocuments = false
}
this.showLoader = false;
this.loadWordCloud();
res.Categories.forEach( e => {
e['Active'] = false;
});
// bind respose
this.searchCategories = res.Categories;
this.searchDocuments = this.sortArrayISODate(res.Documents);
this.reorderList(this.ordinance);
// hide show document
if(this.searchDocuments.length >= 1){
this.showDocuments = true;
} else {
this.showDocuments = false
}
this.showLoader = false;
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
}
else if ( this.type == "AccoesPresidenciais & ArquivoDespachoElect"){
@@ -286,6 +289,9 @@ export class SearchPage implements OnInit {
}
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
this.search.searchForDoc(this.searchSubject, this.searchDocumentDate, this.searchSender
@@ -317,6 +323,9 @@ export class SearchPage implements OnInit {
if(counter ==2){
this.showLoader = false;
}
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
} else {
@@ -353,6 +362,9 @@ export class SearchPage implements OnInit {
}
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
this.search.basicSearch(this.searchSubject, this.searchDocumentDate, this.searchSender
@@ -385,6 +397,9 @@ export class SearchPage implements OnInit {
this.showLoader = false;
}
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
}
}
@@ -432,7 +447,10 @@ export class SearchPage implements OnInit {
}
this.showLoader = false;
this.loadWordCloud();
});
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
} else {
let counter = 0;
@@ -468,6 +486,9 @@ export class SearchPage implements OnInit {
}
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
}
}
@@ -500,6 +521,9 @@ export class SearchPage implements OnInit {
this.showLoader = false;
this.loadWordCloud();
},error => {
this.searchResult = "Registo não encontrado"
console.log(error)
});
}