Skip to content

Commit

Permalink
feat(TOP):se agrega efector (#2896)
Browse files Browse the repository at this point in the history
  • Loading branch information
maring0019 authored Sep 1, 2023
1 parent 8934a84 commit cae32ee
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 20 deletions.
50 changes: 31 additions & 19 deletions src/app/components/top/solicitudes/historialSolicitud.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
<plex-list *ngIf="itemsHistorial.length">
<plex-item *ngFor="let reg of itemsHistorial">
<plex-icon name="entrada" type="info"></plex-icon>
<plex-label *ngIf="reg.accion !== 'notificar'" [tituloBold]="true" titulo="{{ reg.createdAt | fecha }}"
subtitulo="{{ reg.descripcion }} por {{ reg.createdBy.nombreCompleto }}">
</plex-label>
<plex-label *ngIf="reg.accion === 'notificar'" [tituloBold]="true" titulo="{{ reg.createdAt | fecha }}"
subtitulo="{{ reg.descripcion }} por {{ reg.createdBy.nombreCompleto }} el {{reg.fechaDeNotificacion | fecha}}">
</plex-label>
<plex-label [tituloBold]="true" titulo="Notas"
subtitulo="{{ reg.observaciones? reg.observaciones :'Sin observaciones'}}"></plex-label>
<plex-label *ngIf="reg.descripcion === 'Referida'" [tituloBold]="true" titulo="Prestación Destino Original"
subtitulo="{{ reg.tipoPrestacion?.term? reg.tipoPrestacion.term : 'No indica prestación' }}">
</plex-label>
<plex-label *ngIf="reg.descripcion === 'Referida'" [tituloBold]="true" titulo="Organizacion Destino Original"
subtitulo="{{ reg.organizacion.nombre? reg.organizacion.nombre : 'No indica organización' }}">
</plex-label>
<plex-label *ngIf="reg.profesional && (reg.accion === 'referir' || reg.accion === 'asignada')"
[tituloBold]="true" titulo="Profesional Destino Original"
subtitulo="{{ reg.profesional.nombre }} {{ reg.profesional.apellido }}">
</plex-label>
<plex-icon name="entrada" type="info" size="md"></plex-icon>
<div>
<plex-grid cols="3" size="md" type="auto">
<plex-label size="md" *ngIf="reg.accion !== 'notificar'" [tituloBold]="true"
titulo="{{ reg.createdAt | fecha }}"
subtitulo="{{ reg.descripcion }} por {{ reg.createdBy.nombreCompleto }}">
</plex-label>
<plex-label size="md" *ngIf="reg.accion === 'notificar'" [tituloBold]="true"
titulo="{{ reg.createdAt | fecha }}"
subtitulo="{{ reg.descripcion }} por {{ reg.createdBy.nombreCompleto }} el {{reg.fechaDeNotificacion | fecha}}">
</plex-label>
<plex-label size="md" [tituloBold]="true" titulo="Notas"
subtitulo="{{ reg.observaciones? reg.observaciones :'Sin observaciones'}}"></plex-label>
<plex-label size="md" *ngIf="reg.descripcion === 'Referida'" [tituloBold]="true"
titulo="Prestación Destino Original"
subtitulo="{{ reg.tipoPrestacion?.term? reg.tipoPrestacion.term : 'No indica prestación' }}">
</plex-label>

<plex-label size=" md" *ngIf="reg.descripcion === 'Referida'" [tituloBold]="true"
titulo="Organizacion Destino Original"
subtitulo="{{ reg.organizacion.nombre? reg.organizacion.nombre : 'No indica organización' }}">
</plex-label>
<plex-label size="md" *ngIf="reg.profesional && (reg.accion === 'referir' || reg.accion === 'asignada')"
[tituloBold]="true" titulo="Profesional Destino Original"
subtitulo="{{ reg.profesional.nombre }} {{ reg.profesional.apellido }}">
</plex-label>
<plex-label size="md" [tituloBold]="true" titulo="Efector"
subtitulo="{{reg.createdBy.organizacion.nombre? reg.createdBy.organizacion.nombre : 'No indica organización'}}">
</plex-label>
</plex-grid>
</div>
</plex-item>
</plex-list>
<div *ngIf="!itemsHistorial.length" justify="center" class="mt-4">
Expand Down
3 changes: 2 additions & 1 deletion src/app/components/top/solicitudes/solicitudes.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<plex-layout [main]="showSidebar? 8 : 12" *ngIf="!showDarTurnos && !showCargarSolicitud && !showEditarReglas">
<plex-layout [main]="showSidebar? 8 : 12" [offset]="160" (scroll)="onScroll()"
*ngIf="!showDarTurnos && !showCargarSolicitud && !showEditarReglas">
<plex-layout-main>
<header>
<plex-title main titulo="{{asignadas?'Solicitudes asignadas':'Módulo de solicitudes'}}">
Expand Down

0 comments on commit cae32ee

Please sign in to comment.