|
|
@@ -10,8 +10,17 @@
|
|
|
</div>
|
|
|
<div class="dialog_details_column animated fadeIn" *ngIf="!isLoading && !hasError">
|
|
|
<h2>{{ notification!.TITULO }}</h2>
|
|
|
+ <h3>{{ notification!.MODULO }}</h3><br>
|
|
|
+ <p>{{ notification!.CUERPO_NOTIFICACION }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div mat-dialog-actions align="end">
|
|
|
<button mat-button mat-dialog-close>Cerrar</button>
|
|
|
+ <button mat-button [mat-dialog-close]="'start|' + notification!.ID_ORDEN + '|' + notification!.TIPO_ORDEN"
|
|
|
+ *ngIf="!isLoading && !hasError && notification!.ID_ORDEN != null">
|
|
|
+ Iniciar orden
|
|
|
+ </button>
|
|
|
+ <button mat-button [mat-dialog-close]="'go|' + notification!.ID_MODULO" *ngIf="!isLoading && !hasError && notification!.ID_ORDEN == null">
|
|
|
+ Ir al módulo
|
|
|
+ </button>
|
|
|
</div>
|