Skip to content

Commit

Permalink
fix(in): egreso y filtro por documento en listados (#2898) (#2893)
Browse files Browse the repository at this point in the history
Co-authored-by: Lautaro Molina <lautaro.mlagos@gmail.com>
  • Loading branch information
Fabio-Ramirez and negro89 authored Oct 4, 2023
1 parent 1027035 commit ccc1197
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export interface IResumenInternacion {
alias?: string;
apellido: string;
documento: string;
numeroIdentificion?: string;
numeroIdentificacion?: string;
sexo: string;
genero: string;
fechaNacimiento: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ export class ListadoInternacionCapasService {
const esNumero = Number.isInteger(Number(paciente));
if (esNumero) {
listaInternacionFiltrada = listaInternacionFiltrada.filter(
(internacion: IResumenInternacion) => internacion.paciente.documento?.includes(paciente)
(internacion: IResumenInternacion) =>
(internacion.paciente.documento?.includes(paciente) || internacion?.paciente?.numeroIdentificacion?.includes(paciente))
);
} else {
listaInternacionFiltrada = listaInternacionFiltrada.filter(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ export class ListadoInternacionService {
if (paciente) {
const esNumero = Number.isInteger(Number(paciente));
if (esNumero) {
listaInternacionFiltrada = listaInternacionFiltrada.filter((internacion: IPrestacion) => internacion.paciente.documento?.includes(paciente));
listaInternacionFiltrada = listaInternacionFiltrada.filter((internacion: IPrestacion) =>
(internacion.paciente.documento?.includes(paciente) || internacion.paciente?.numeroIdentificacion?.includes(paciente)));
} else {
listaInternacionFiltrada = listaInternacionFiltrada.filter((internacion: IPrestacion) =>
(internacion.paciente.nombre.toLowerCase().includes(paciente.toLowerCase()) ||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name="fechaHasta" label="Hasta" class="fechas" [min]="fechaDesde">
</plex-datetime>
<plex-text [(ngModel)]="datoPaciente" (change)="refreshSelection($event,'paciente')" label="paciente"
placeholder="Ingrese un documento, apellido o nombre">
placeholder="Ingrese un documento, apellido, nombre, alias o número de identificación">
</plex-text>
<plex-select [(ngModel)]="prestaciones" (change)="refreshSelection($event,'prestaciones')"
label="Prestación" tmPrestaciones preload="true">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
[class.selected]="carnet?.id===carnetSelected?.id" [class.selectable]="selectable">
<ng-container *ngIf="carnet">
<td *plTableCol="'fechaInicio'">{{ carnet.fecha | fecha }}</td>
<td *plTableCol="'paciente'">{{ carnet.paciente.apellido + ', ' + carnet.paciente.nombre }}</td>
<td *plTableCol="'paciente'">{{ carnet.paciente | nombre }}</td>
<td *plTableCol="'documento'">{{ carnet.paciente.documento }}</td>
<td *plTableCol="'edad'">{{ carnet.paciente | edad }}</td>
<td *plTableCol="'ausente'">
Expand Down

0 comments on commit ccc1197

Please sign in to comment.