develop
parent
43aac7cbfc
commit
6e404274c3
@ -0,0 +1,30 @@ |
||||
<h3>Détails de l'engagement</h3> |
||||
<p> Collaborateur: {{collaborateur.nom}} {{collaborateur.prenom}}</p> |
||||
<p> Référent: {{referent.nom}} {{referent.prenom}}</p> |
||||
<p>EP effectué le {{ ep.datePrevisionnelle | date: 'dd/MM/yyyy' }} </p> |
||||
<p>Action : {{ data.action}}</p> |
||||
<p>Modalité: {{ data.modalite }}</p> |
||||
<p>Date limite: {{ data.dateLimite | date: 'dd/MM/yyyy' }} </p> |
||||
<p>Etat : {{ afficherEtat(data.etatEngagement) }}</p> |
||||
<p *ngIf="data.etatEngagement == etatEngagement.NonRealisable"> Raison non réalisable : {{data.raisonNonRealisable}}</p> |
||||
<ng-container *ngIf="data.etatEngagement == etatEngagement.EnAttente"> |
||||
<button mat-raised-button (click)="repondre()">Répondre à l'engagement</button> |
||||
<ng-container *ngIf="donnerReponse"> |
||||
<mat-slide-toggle [(ngModel)]="engagementRespecte"> |
||||
Engagement respecté |
||||
</mat-slide-toggle> |
||||
|
||||
<div> |
||||
<mat-form-field *ngIf="!engagementRespecte" appearance="fill"> |
||||
<mat-label>Raison du refus</mat-label> |
||||
<textarea matInput [(ngModel)]="raisonRefus"></textarea> |
||||
</mat-form-field> |
||||
|
||||
</div> |
||||
<button mat-raised-button (click)="mettreAJourEngagement()">Valider le choix</button> |
||||
</ng-container> |
||||
|
||||
</ng-container> |
||||
<button mat-raised-button (click)="fermer()">Fermer</button> |
||||
|
||||
|
Loading…
Reference in new issue