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

RUP: Fecha de ejecución en agendas anteriores #1576

Closed
wants to merge 1 commit into from
Closed
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
56 changes: 36 additions & 20 deletions src/app/modules/rup/components/ejecucion/puntoInicio.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export class PuntoInicioComponent implements OnInit, OnDestroy {
public paciente: any;
public ultimoLlamado: any;


public espaciosFisicosTurnero = [];
// ultima request que se almacena con el subscribe
private lastRequest: Subscription;
Expand Down Expand Up @@ -357,35 +358,50 @@ export class PuntoInicioComponent implements OnInit, OnDestroy {
}

iniciarPrestacion(paciente, snomedConcept, turno) {
let horario = new Date();
this.plex.confirm('Paciente: <b>' + paciente.apellido + ', ' + paciente.nombre + '.</b><br>Prestación: <b>' + snomedConcept.term + '</b>', '¿Crear Prestación?').then(confirmacion => {
if (confirmacion) {
const token = this.hudsService.generateHudsToken(this.auth.usuario, this.auth.organizacion, paciente, snomedConcept.term, this.auth.profesional, turno.id, snomedConcept._id);
const crear = this.servicioPrestacion.crearPrestacion(paciente, snomedConcept, 'ejecucion', new Date(), turno);
const res = concat(token, crear);
res.subscribe(input => {
if (input.token) {
// se obtuvo token y loguea el acceso a la huds del paciente
window.sessionStorage.setItem('huds-token', input.token);
} else {
if (input.error) {
this.plex.info('info', input.error, 'Aviso');
} else {
this.routeTo('ejecucion', input.id); // prestacion
if (this.agendaSeleccionada.horaInicio <= moment().startOf('day').format()) {
this.serviceTurno.get({ id: turno }).subscribe(turnos => {
horario = (turnos[0].bloques[0].turnos[0].horaAsistencia);
if (horario === undefined) { // Se verifica si el turno tiene registrado asistencia
horario = this.agendaSeleccionada.horaInicio;
}
}
}, (err) => {
if (err === 'ya_iniciada') {
this.plex.info('info', 'La prestación ya fue iniciada por otro profesional', 'Aviso');
} else {
this.plex.info('warning', err, 'Error');
}
});
this.creaPrestacion(paciente, snomedConcept, turno, horario);
});
} else {
this.creaPrestacion(paciente, snomedConcept, turno, horario);
}
} else {
return false;
}
});
}

creaPrestacion(paciente, snomedConcept, turno, horario) {
const token = this.hudsService.generateHudsToken(this.auth.usuario, this.auth.organizacion, paciente, snomedConcept.term, this.auth.profesional, turno.id, snomedConcept._id);
const crear = this.servicioPrestacion.crearPrestacion(paciente, snomedConcept, 'ejecucion', horario, turno);
const res = concat(token, crear);
res.subscribe(input => {
if (input.token) {
// se obtuvo token y loguea el acceso a la huds del paciente
window.sessionStorage.setItem('huds-token', input.token);
} else {
if (input.error) {
this.plex.info('info', input.error, 'Aviso');
} else {
this.routeTo('ejecucion', input.id); // prestacion
}
}
}, (err) => {
if (err === 'ya_iniciada') {
this.plex.info('info', 'La prestación ya fue iniciada por otro profesional', 'Aviso');
} else {
this.plex.info('warning', err, 'Error');
}
});
}


registrarInasistencia(paciente, agenda: IAgenda = null, turno, operacion) {
let cambios;
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/rup/services/prestaciones.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ export class PrestacionesService {
return prestacion;
}

crearPrestacion(paciente: any, snomedConcept: any, momento: String = 'solicitud', fecha: any = new Date(), turno: any = null): Observable<any> {
crearPrestacion(paciente: any, snomedConcept: any, momento: String = 'solicitud', fecha: any, turno: any = null): Observable<any> {
let prestacion = this.inicializarPrestacion(paciente, snomedConcept, momento, 'ambulatorio', fecha, turno);
return this.post(prestacion);
}
Expand Down