Skip to content

Commit

Permalink
refactor(core): tipoPrestacion.id por conceptId
Browse files Browse the repository at this point in the history
  • Loading branch information
juuliotero authored and liquid36 committed Sep 8, 2020
1 parent 154bc58 commit 6420e34
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ export class TurnosPrestacionesComponent implements OnInit {
}
if (tipo === 'prestaciones') {
if (value.value !== null) {
this.parametros['prestacion'] = value.value._id;
delete this.parametros['prestaciones'];
this.parametros['prestacion'] = value.value.conceptId;
} else {
this.parametros['prestacion'] = '';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ListarPrestamosComponent implements OnInit {
public sortDescending = false;
public _listarCarpetas;

get cssLayout () {
get cssLayout() {
return { 'col-8': this.verDevolver, 'col': !this.verDevolver };
}

Expand Down Expand Up @@ -86,10 +86,10 @@ export class ListarPrestamosComponent implements OnInit {
}
if (filter === 'prestaciones') {
if (value.value !== null) {
this.filters['idTipoPrestacion'] = value.value.id;
this.filters['tipoPrestacion'] = value.value.conceptId;
delete this.filters['idTipoPrestaciones'];
} else {
this.filters['idTipoPrestacion'] = '';
this.filters['tipoPrestacion'] = '';
}
}
if (filter === 'profesionales') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ export class ListarSolicitudesComponent implements OnInit {
}
if (filter === 'prestaciones') {
if (value.value !== null) {
this.filters['idTipoPrestacion'] = value.value.id;
this.filters['tipoPrestacion'] = value.value.conceptId;
delete this.filters['idTipoPrestaciones'];
} else {
this.filters['idTipoPrestacion'] = '';
this.filters['tipoPrestacion'] = '';
}
}
if (filter === 'profesionales') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class EncabezadoReportesDiariosComponent implements OnInit {

// prestacion
if (this.prestacion) {
this.parametros['prestacion'] = this.prestacion.id;
this.parametros['prestacion'] = this.prestacion.conceptId;
this.parametros['prestacionNombre'] = this.prestacion.nombre;
} else {
this.parametros['prestacion'] = '';
Expand Down Expand Up @@ -273,7 +273,7 @@ export class EncabezadoReportesDiariosComponent implements OnInit {
}

public toExcel() {
let data: Array<{title: string, table: any}>;
let data: Array<{ title: string, table: any }>;

if (this.showResumenDiarioMensual) {
data = this.reporte.map(item => {
Expand All @@ -290,7 +290,7 @@ export class EncabezadoReportesDiariosComponent implements OnInit {
title: this.parametros['tipoReportes'],
table: document.getElementById(this.parametros['tipoReportes']),
}],
`reportesDiarios_${this.prestacion.nombre}_${dateStr}`);
`reportesDiarios_${this.prestacion.nombre}_${dateStr}`);
}
}

Expand Down
34 changes: 17 additions & 17 deletions src/app/components/top/solicitudes/solicitudes.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ export class SolicitudesComponent implements OnInit {
}
}
if (this.prestacionesDestino && this.prestacionesDestino.length) {
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.id);
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.conceptId);
}
}
}
Expand All @@ -347,13 +347,13 @@ export class SolicitudesComponent implements OnInit {
}
}
if (this.prestacionesDestino && this.prestacionesDestino.length) {
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.id);
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.conceptId);
}
}
}

if (this.prestacionesDestino && this.prestacionesDestino.length) {
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.id);
params['prestacionDestino'] = this.prestacionesDestino.map(e => e.conceptId);
} else {
if (this.prestacionesPermisos.length > 0 && this.prestacionesPermisos[0] !== '*') {
params['tipoPrestaciones'] = this.prestacionesPermisos;
Expand Down Expand Up @@ -522,15 +522,15 @@ export class SolicitudesComponent implements OnInit {
break;
case 'rechazada':

// Se puede dar turno?
this.darTurnoArrayEntrada[i] = false;
// Se puede dar turno?
this.darTurnoArrayEntrada[i] = false;

// Se puede visualizar?
this.visualizarEntrada[i] = true;
// Se puede visualizar?
this.visualizarEntrada[i] = true;

// Se puede auditar?
this.auditarArrayEntrada[i] = true;
break;
// Se puede auditar?
this.auditarArrayEntrada[i] = true;
break;
case 'validada':

// Hay turno?
Expand Down Expand Up @@ -703,11 +703,11 @@ export class SolicitudesComponent implements OnInit {
this.showSidebar = false;
if (event.status === false) {
this.plex.confirm(`Paciente: <b>${this.prestacionSeleccionada.paciente.apellido}, ${this.prestacionSeleccionada.paciente.nombre}.</b><br>Prestación: <b>${this.prestacionSeleccionada.solicitud.tipoPrestacion.term}</b>, ¿Está seguro de querer iniciar una pestación?`)
.then(confirmacion => {
if (confirmacion) {
this.confirmarIniciarPrestacion(event.fecha);
}
});
.then(confirmacion => {
if (confirmacion) {
this.confirmarIniciarPrestacion(event.fecha);
}
});
}
}

Expand All @@ -718,8 +718,8 @@ export class SolicitudesComponent implements OnInit {
// PATCH pasar prestacion a ejecución
this.iniciarPrestacion(fecha)
).subscribe(
() => this.router.navigate(['/rup/ejecucion', this.prestacionSeleccionada.id]),
(err) => this.plex.info('danger', 'La prestación no pudo ser iniciada. ' + err)
() => this.router.navigate(['/rup/ejecucion', this.prestacionSeleccionada.id]),
(err) => this.plex.info('danger', 'La prestación no pudo ser iniciada. ' + err)
);
}

Expand Down

0 comments on commit 6420e34

Please sign in to comment.