Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TOP - información sidebar - historial #2896

Merged
merged 1 commit into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading