|
|
@ -70,7 +70,7 @@ export class CollaborateursTableComponent implements OnInit { |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Nombre total d'élément du tableau |
|
|
|
* Nombre total d'élément du tableau |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
taille: number; |
|
|
|
taille: number = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -93,6 +93,9 @@ export class CollaborateursTableComponent implements OnInit { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
dateFin: Date = undefined; |
|
|
|
dateFin: Date = undefined; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Input() idReferent: string; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Indiquer si il s'agit d'une recherche collaborateur, d'un recherche référentEP ou d'une recherche collaborateurEP d'un référent |
|
|
|
* Indiquer si il s'agit d'une recherche collaborateur, d'un recherche référentEP ou d'une recherche collaborateurEP d'un référent |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -193,11 +196,11 @@ export class CollaborateursTableComponent implements OnInit { |
|
|
|
* Afficher les informations des collaborateursEP d'un référent
|
|
|
|
* Afficher les informations des collaborateursEP d'un référent
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
updateCollaborateursEP() { |
|
|
|
updateCollaborateursEP() { |
|
|
|
this.collaborateursDisponiblesSubscription = this.service.getCollaborateursByReferent(this.collaborateurConnecte.id, this.asc, this.numPage, this.parPage, this.search, this.tri).subscribe( |
|
|
|
this.collaborateursDisponiblesSubscription = this.service.getCollaborateursByReferent(this.idReferent, this.asc, this.numPage, this.parPage, this.search, this.tri).subscribe( |
|
|
|
collaborateurs => { console.log(collaborateurs); this.dataSource = new MatTableDataSource(collaborateurs);}, |
|
|
|
collaborateurs => { console.log(collaborateurs); this.dataSource = new MatTableDataSource(collaborateurs);}, |
|
|
|
err => console.log(err) |
|
|
|
err => console.log(err) |
|
|
|
); |
|
|
|
); |
|
|
|
this.collaborateursDisponiblesCountSubscription = this.service.getCollaborateursByReferentCount(this.collaborateurConnecte.id, this.asc, this.numPage, this.parPage, this.search, this.tri).subscribe( |
|
|
|
this.collaborateursDisponiblesCountSubscription = this.service.getCollaborateursByReferentCount(this.idReferent, this.asc, this.numPage, this.parPage, this.search, this.tri).subscribe( |
|
|
|
count => { console.log(count); this.taille=count;}, |
|
|
|
count => { console.log(count); this.taille=count;}, |
|
|
|
err => console.log(err) |
|
|
|
err => console.log(err) |
|
|
|
); |
|
|
|
); |
|
|
|