Skip to content

Commit

Permalink
feat(GDU): control para cuando el profesional no tiene numero de matr…
Browse files Browse the repository at this point in the history
…icula
  • Loading branch information
palita1991 committed Oct 13, 2021
1 parent 3557c9c commit ce3824b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
*ngIf="(profesional$ | async) as profesional;else notProfesional">
Profesional
<span dato>{{profesional.formacionGrado.length > 0 ?
profesional.formacionGrado[0].profesion.nombre + ': MATRÍCULA N° '
+ profesional.formacionGrado[0].matriculacion[profesional.formacionGrado[0].matriculacion.length -
1].matriculaNumero:'NO MATRICULADO'}}</span>
profesional.formacionGrado[0].profesion.nombre +' '+(profesional.formacionGrado[0].matriculacion?.length?
'MATRÍCULA N° '
+profesional.formacionGrado[0].matriculacion[profesional.formacionGrado[0].matriculacion?.length
-1].matriculaNumero:''):'NO MATRICULADO'}}</span>

</plex-badge>
<ng-template #notProfesional>
Expand All @@ -24,4 +25,4 @@
<plex-copy *ngIf="usuario.documento" [value]="usuario.documento">{{ usuario.documento | number }}</plex-copy>
</div>

</plex-detail>
</plex-detail>

0 comments on commit ce3824b

Please sign in to comment.