Skip to content

Commit

Permalink
feat(CIT): implementa selector de financiadores
Browse files Browse the repository at this point in the history
  • Loading branch information
ma7payne committed May 16, 2023
1 parent aa60923 commit a269f70
Show file tree
Hide file tree
Showing 12 changed files with 183 additions and 250 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import { ObraSocialService } from '../../services/obraSocial.service';
export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
public busqueda$: Observable<any[]>;
public paciente$: Observable<any>;
public obraSocialPaciente: any[] = [];
public prepagas: any[] = [];
public lastSelect$ = new BehaviorSubject<string>(null);
public descargasPendientes = false;
public prestacionesExport = [];
Expand Down Expand Up @@ -59,11 +57,8 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
public prestacionesMax = 500;
public showHint = false;
public prestacionIniciada;
public showListaPrepagas: Boolean = false;
public modelo: any = {
obraSocial: '',
prepaga: ''
};

public financiador;

public columnas = {
fecha: true,
Expand Down Expand Up @@ -203,9 +198,6 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
);

this.initialize();
this.obraSocialService.getPrepagas().subscribe(prepagas => {
this.prepagas = prepagas;
});
}

initialize() {
Expand Down Expand Up @@ -306,8 +298,11 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
}
}

setFinanciador(financiador: any) {
this.financiador = financiador;
}

mostrarPrestacion(datos) {
this.modelo.prepaga = null;
this.descargasPendientes = false;
this.prestacionIniciada = datos.idPrestacion;
this.hudsService.generateHudsToken(this.auth.usuario, this.auth.organizacion, datos.paciente, 'auditoria', this.auth.profesional ? this.auth.profesional : null, datos.turno ? datos.turno.id : null, datos.idPrestacion ? datos.idPrestacion : null).subscribe(hudsToken => {
Expand All @@ -320,15 +315,10 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
this.lastSelect$.next(datos);
datos.seleccionada = true;
this.showPrestacion = true;
this.showListaPrepagas = false;
this.prestacion = datos;
this.cargarObraSocial(datos);
});
if (datos.financiador) {
this.modelo.prepaga = '';
};
this.pacienteService.getById(datos.paciente.id).subscribe(paciente => {
this.paciente = paciente;;
this.paciente = paciente;
});
}

Expand All @@ -340,9 +330,9 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
this.prestacion.origen = 'buscador';
const turno = this.prestacion;

if (this.modelo.prepaga !== '') {
if (this.financiador.prepaga) {
turno.obraSocial = 'prepaga';
turno.prepaga = this.modelo.prepaga;
turno.prepaga = this.financiador;
}
this.facturacionAutomaticaService.post(turno).subscribe(respuesta => {
if (respuesta.message) {
Expand Down Expand Up @@ -416,47 +406,7 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
}
}

cargarObraSocial(datos) {
if ((datos.idPrestacion)) {
this.obraSocialPaciente = [];
this.obraSocialService.getObrasSociales(datos.paciente.documento).subscribe(resultado => {
if (resultado.length) {
this.obraSocialPaciente = resultado.map((os: any) => {
const osPaciente = {
'id': os.financiador,
'label': os.financiador
};
return osPaciente;
});
this.modelo.obraSocial = this.obraSocialPaciente[0].label;
} else {
if (datos.paciente.obraSocial) {
this.obraSocialPaciente.push({ 'id': datos.paciente.obraSocial.nombre, 'label': datos.paciente.obraSocial.nombre });
this.modelo.obraSocial = this.obraSocialPaciente[0].label;
}


}
this.obraSocialPaciente.push({ 'id': 'prepaga', 'label': 'Prepaga' });
});
}
}

seleccionarObraSocial(event) {
if (event.value === 'prepaga') {
this.modelo.prepaga = null;
this.obraSocialService.getPrepagas().subscribe(prepagas => {
this.prepagas = prepagas;
});
this.showListaPrepagas = true;
} else {
this.showListaPrepagas = false;
this.modelo.prepaga = '';
}
this.modelo.obraSocial = event.value;
}

generarComprobante() {
return this.prestacionIniciada && this.puedeEmitirComprobante && this.modelo.prepaga !== null && ((!this.prestacion.estadoFacturacion) || this.prestacion.estadoFacturacion?.estado !== 'Comprobante con prestacion');
return this.prestacionIniciada && this.puedeEmitirComprobante && this.financiador && ((!this.prestacion.estadoFacturacion) || this.prestacion.estadoFacturacion?.estado !== 'Comprobante con prestacion');
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -261,22 +261,22 @@
</div>
</div>
</div>
<div *ngIf="modelo.obraSocial !== 'SUMAR'">
<plex-radio *ngIf="prestacion.financiador" [(ngModel)]="modelo.obraSocial" name="os"
(change)="seleccionarObraSocial($event)" label="Seleccione una Obra Social"
[data]="obraSocialPaciente">
</plex-radio>
<plex-select *ngIf="showListaPrepagas || !prestacion.financiador" [(ngModel)]="modelo.prepaga"
name="prepagas" [data]="prepagas" label="Seleccione una Prepaga" idField="nombre"
labelField="nombre">
</plex-select>
<br>
</div>
<div *ngIf="modelo.obraSocial === 'SUMAR'">
<label>Obra social</label>
<div>{{modelo.obraSocial}}</div>
<div class="row">
<div class="col mb-4">
<ng-container>
<plex-grid type="auto" size="md" cols="2">
<div *ngIf="financiador?.nombre !== 'SUMAR'">
<seleccionar-financiador *ngIf="paciente" [paciente]="paciente"
(setFinanciador)="setFinanciador($event)"></seleccionar-financiador>
</div>
<div *ngIf="financiador?.nombre === 'SUMAR'">
<label>Obra social</label>
<div>{{financiador?.nombre}}</div>
</div>
</plex-grid>
</ng-container>
</div>
</div>
<br>
</div>

<div *ngIf="prestacion.idPrestacion">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { ElementosRUPModule } from 'src/app/modules/rup/elementos-rup.module';
import { ExportHudsService } from 'src/app/modules/visualizacion-informacion/services/export-huds.service';
import { VisualizacionInformacionModule } from 'src/app/modules/visualizacion-informacion/visualizacion-informacion.module';
import { MPILibModule } from 'src/app/modules/mpi/mpi-lib.module';
import { CITASLibModule } from '../turnos/citas.module';

@NgModule({
imports: [
Expand All @@ -29,6 +30,7 @@ import { MPILibModule } from 'src/app/modules/mpi/mpi-lib.module';
VisualizacionInformacionModule,
ScrollingModule,
MPILibModule,
CITASLibModule,
RouterModule.forChild([
{ path: '', component: TurnosPrestacionesComponent, pathMatch: 'full' },
])
Expand Down
5 changes: 4 additions & 1 deletion src/app/components/turnos/citas.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { DirectiveLibModule } from '../../directives/directives.module';
import { BotonesAgendaPipe } from './gestor-agendas/pipes/botonesAgenda.pipe';
import { BotonesAgendaGeneralPipe } from './gestor-agendas/pipes/botonesAgendaGeneral.pipe';
import { BotonesTurnosPipe } from './gestor-agendas/pipes/botonesTurnos.pipe';
import { SeleccionarFinanciadorComponent } from './dar-turnos/seleccionar-financiador.component';

@NgModule({
imports: [
Expand All @@ -36,6 +37,7 @@ import { BotonesTurnosPipe } from './gestor-agendas/pipes/botonesTurnos.pipe';
BotonesAgendaPipe,
BotonesAgendaGeneralPipe,
BotonesTurnosPipe,
SeleccionarFinanciadorComponent
],
exports: [
DarTurnosComponent,
Expand All @@ -45,7 +47,8 @@ import { BotonesTurnosPipe } from './gestor-agendas/pipes/botonesTurnos.pipe';
CalendarioComponent,
BotonesAgendaPipe,
BotonesAgendaGeneralPipe,
BotonesTurnosPipe
BotonesTurnosPipe,
SeleccionarFinanciadorComponent
],
})
export class CITASLibModule {
Expand Down
63 changes: 7 additions & 56 deletions src/app/components/turnos/dar-turnos/dar-sobreturno.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ export class DarSobreturnoComponent implements OnChanges {
public horaTurno = null;
public telefono = '';
public cambioTelefono = false;
public obraSocialPaciente: any[] = [];
public prepagas: any[] = [];
public showListaPrepagas: Boolean = false;
public hoy = moment().toDate();
public inicio: Date;
public fin: Date;
Expand Down Expand Up @@ -70,7 +67,6 @@ export class DarSobreturnoComponent implements OnChanges {

this.servicePaciente.getById(this.idPaciente).subscribe(res => {
this.paciente = res;
this.loadObraSocial(this.paciente);
});

this.carpetaEfector = {
Expand All @@ -86,55 +82,11 @@ export class DarSobreturnoComponent implements OnChanges {
this.recuperarDatos();
}

getPrepagas() {
this.obraSocialService.getPrepagas().subscribe(prepagas => {
this.showListaPrepagas = true;
this.prepagas = prepagas;
});
}

loadObraSocial(paciente) {
if (!paciente || !paciente.documento) {
return;
}
this.obraSocialService.getObrasSociales(paciente.documento).subscribe(resultado => {
if (resultado.length) {
this.obraSocialPaciente = resultado.map((os: any) => {
let osPaciente;

if (os.nombre) {
osPaciente = {
'id': os.nombre,
'label': os.nombre
};
} else {
osPaciente = {
'id': os.financiador,
'label': os.financiador
};
}
return osPaciente;
});

this.modelo.obraSocial = this.obraSocialPaciente[0].label;
this.obraSocialPaciente.push({ 'id': 'prepaga', 'label': 'Prepaga' });
} else {
this.getPrepagas();
}
});
}

seleccionarPrepaga(event) {
this.modelo.prepaga = event.value.nombre;
}

seleccionarObraSocial(event) {
if (event.value === 'prepaga') {
this.getPrepagas();
} else {
this.showListaPrepagas = false;
}
this.modelo.obraSocial = event && event.value;
setFinanciador(financiador) {
financiador && financiador.prepaga ?
this.modelo.prepaga = financiador.nombre
:
this.modelo.obraSocial = financiador;
}

// Operaciones con carpetaPaciente
Expand Down Expand Up @@ -190,9 +142,8 @@ export class DarSobreturnoComponent implements OnChanges {
nombre: null
};
} else {
if (this.modelo.prepaga) { osPaciente = this.modelo.prepaga; } else {
osPaciente = this.paciente.financiador && this.paciente.financiador.find((os) => os.nombre === this.modelo.obraSocial);
}
this.modelo.prepaga ? osPaciente = this.modelo.prepaga :
osPaciente = this.modelo.obraSocial;
}

const pacienteSave: IPacienteBasico = {
Expand Down
19 changes: 3 additions & 16 deletions src/app/components/turnos/dar-turnos/dar-sobreturno.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,10 @@
[(ngModel)]="carpetaEfector.nroCarpeta"></plex-text>
</div>
</div>
<div class="row" *ngIf="modelo.obraSocial !== 'SUMAR'">
<div class="col-12">
<plex-radio *ngIf="this.modelo.obraSocial" [data]="obraSocialPaciente" [(ngModel)]="modelo.obraSocial"
name="os" (change)="seleccionarObraSocial($event)" label="Seleccione una Obra Social">
</plex-radio>
</div>
<div class="col-12">
<plex-select *ngIf="showListaPrepagas" [(ngModel)]="modelo.prepaga" name="prepagas" [data]="prepagas"
(change)="seleccionarPrepaga($event)" label="Seleccione una Prepaga" idField="nombre"
labelField="nombre">
</plex-select>
</div>
</div>
<div class="row">
<div class="col" *ngIf="modelo.obraSocial === 'SUMAR'">
<label>Programa</label>
<div>{{modelo.obraSocial}}</div>
<div class="col-12">
<seleccionar-financiador [paciente]="paciente"
(setFinanciador)="setFinanciador($event)"></seleccionar-financiador>
</div>
</div>
<div class="row" *ngIf="agenda && agenda.tipoPrestaciones.length > 1">
Expand Down
12 changes: 7 additions & 5 deletions src/app/components/turnos/dar-turnos/dar-turnos.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export class DarTurnosComponent implements OnInit {
public nota = '';
public link: String = '';
public changeCarpeta = false;
public financiador;
hideDarTurno: boolean;
@HostBinding('class.plex-layout') layout = true; // Permite el uso de flex-box en el componente
autocitado = false;
Expand Down Expand Up @@ -911,10 +912,11 @@ export class DarTurnosComponent implements OnInit {

}

public setFinanciador(financiador) {
this.financiador = { ...financiador, numeroAfiliado: this.numeroAfiliado };
}

private guardarTurno(agd: IAgenda) {
if (this.numeroAfiliado && this.obraSocialPaciente) {
this.obraSocialPaciente.numeroAfiliado = this.numeroAfiliado;
}
const pacienteSave = {
id: this.paciente.id,
documento: this.paciente.documento,
Expand All @@ -927,7 +929,7 @@ export class DarTurnosComponent implements OnInit {
sexo: this.paciente.sexo,
telefono: this.telefono,
carpetaEfectores: this.paciente.carpetaEfectores,
obraSocial: this.obraSocialPaciente
obraSocial: this.financiador
};
if (agd.dinamica) {
const datosTurno = {
Expand All @@ -945,7 +947,7 @@ export class DarTurnosComponent implements OnInit {
this.turno.id = resultado.id;
this.afterSaveTurno(pacienteSave);
},
error => {
() => {
this.agenda = null;
this.actualizar();
this.plex.toast('danger', 'Turno no asignado');
Expand Down
15 changes: 12 additions & 3 deletions src/app/components/turnos/dar-turnos/dar-turnos.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@
</plex-grid>
</ng-container>



<!-- Dependiendo el estado, se visualiza el plex-title aducuado -->
<plex-title titulo="{{estadoT==='dinamica'?'Agenda dinámica':estadoT==='noTurnos'?'Agendas alternativas':'Selección horario'}}"
size="sm">
Expand Down Expand Up @@ -280,6 +278,18 @@ <h6 *ngIf="estadoT == 'noTurnos' && alternativas.length > 0">No hay turnos en es
</plex-item>
</plex-list>

<!-- Financiador: Obras sociales y prepagas -->
<ng-container>
<div class="mb-4">
<plex-title titulo="Cobertura Social" size="sm">
</plex-title>
<plex-grid type="auto" size="md" cols="1">
<seleccionar-financiador [paciente]="paciente"
(setFinanciador)="setFinanciador($event)"></seleccionar-financiador>
</plex-grid>
</div>
</ng-container>

<!--Información Adicional -->
<ng-container *ngIf="estadoT === 'seleccionada' || estadoT == 'dinamica'">
<plex-title titulo="Información Adicional" size="sm">
Expand Down Expand Up @@ -317,6 +327,5 @@ <h6 *ngIf="estadoT == 'noTurnos' && alternativas.length > 0">No hay turnos en es
</plex-button>
</div>
</ng-container>

</plex-layout-sidebar>
</plex-layout>
Loading

0 comments on commit a269f70

Please sign in to comment.