parent
2b1e0123f2
commit
9a1d43fd54
@ -1,18 +1,35 @@ |
|||||||
<app-nav-menu></app-nav-menu> |
<app-nav-menu></app-nav-menu> |
||||||
<h1>Assignation référent</h1> |
<h1>Assignation référent</h1> |
||||||
|
|
||||||
<p *ngIf="referentChoisi != undefined">Référent sélectionné : {{referentChoisi.nom}} {{referentChoisi.prenom}}</p> |
|
||||||
|
|
||||||
<mat-horizontal-stepper linear #stepper> |
<mat-horizontal-stepper linear #stepper> |
||||||
<mat-step label="Choix du référent" [completed]="referentChoisi != undefined"> |
<mat-step label="Choix du référent" [completed]="referentChoisi != undefined"> |
||||||
|
<p *ngIf="referentChoisi == undefined">Veuillez sélectionner un référent</p> |
||||||
|
<p *ngIf="referentChoisi != undefined">Référent sélectionné : {{referentChoisi.nom}} {{referentChoisi.prenom}}</p> |
||||||
<collaborateurs-table [typeRecherche]="typeRechercheReferent" [rechercherParBU]="rechercherParBu" [roles]="rolesReferents" [displayedColumns]="displayedColumnsReferent" [rechercherParDate]="rechercherParDate" (eventEmitter)="choixReferent($event)" ></collaborateurs-table> |
<collaborateurs-table [typeRecherche]="typeRechercheReferent" [rechercherParBU]="rechercherParBu" [roles]="rolesReferents" [displayedColumns]="displayedColumnsReferent" [rechercherParDate]="rechercherParDate" (eventEmitter)="choixReferent($event)" ></collaborateurs-table> |
||||||
</mat-step> |
</mat-step> |
||||||
|
|
||||||
<mat-step label="Choix des collaborateurs" [completed]="false"> |
<mat-step label="Choix des collaborateurs" [completed]="collaborateursSelectionnes.length != 0"> |
||||||
|
<p *ngIf="referentChoisi != undefined">Référent sélectionné : {{referentChoisi.nom}} {{referentChoisi.prenom}}</p> |
||||||
|
<p *ngIf="collaborateursSelectionnes.length == 0">Veuillez sélectionner un collaborateur</p> |
||||||
|
<ng-container *ngIf="collaborateursSelectionnes.length != 0"> |
||||||
|
<p> Collaborateurs sélectionnés :</p> |
||||||
|
<mat-chip-list > |
||||||
|
<mat-chip |
||||||
|
*ngFor="let collaborateur of collaborateursSelectionnes" |
||||||
|
[removable]="true" |
||||||
|
(removed)="enleverCollaborateur(collaborateur)"> |
||||||
|
{{collaborateur.nom}} {{collaborateur.prenom}} |
||||||
|
<mat-icon matChipRemove>cancel</mat-icon> |
||||||
|
</mat-chip> |
||||||
|
</mat-chip-list> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<collaborateurs-table [typeRecherche]="typeRechercheCollaborateursEP" [rechercherParBU]="rechercherParBu" [roles]="rolesCollaborateurs" [displayedColumns]="displayedColumnsCollaborateurs" [rechercherParDate]="rechercherParDate" [collaborateursEP]="collaborateursEP" (eventEmitter)="ajoutCollaborateur($event)" ></collaborateurs-table> |
||||||
</mat-step> |
</mat-step> |
||||||
|
|
||||||
<mat-step label="Confirmation"> |
<mat-step label="Confirmation"> |
||||||
<button mat-button matStepperPrevious>Retour</button> |
|
||||||
<button mat-button >Valider</button> |
<button mat-button >Valider</button> |
||||||
</mat-step> |
</mat-step> |
||||||
</mat-horizontal-stepper> |
</mat-horizontal-stepper> |
Loading…
Reference in new issue