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 Oct 30, 2023
1 parent 9b24616 commit c5cefd9
Show file tree
Hide file tree
Showing 13 changed files with 196 additions and 253 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ import { ITurnosPrestaciones } from './interfaces/turnos-prestaciones.interface'
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 @@ -60,12 +58,9 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
public prestacionesMax = 500;
public showHint = false;
public prestacionIniciada;
public showListaPrepagas: Boolean = false;

public financiador;
public loader: Boolean = false;
public modelo: any = {
obraSocial: '',
prepaga: ''
};

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

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

initialize() {
Expand Down Expand Up @@ -316,8 +308,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;

Expand All @@ -343,15 +338,12 @@ 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.financiador = paciente.financiador[0];
});
}

recupero() {
Expand All @@ -362,11 +354,12 @@ 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.get(turno).subscribe(configuracion => {
const encuentraConfiguracion = configuracion.find(res => {
const encuentraConceptoId = res?.conceptosTurneables?.find(concepto =>
Expand All @@ -386,9 +379,7 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
} else {
this.plex.info('warning', 'Esta prestación no se encuentra disponible para el envío automático a recupero financiero');
}

});

}

sortTable(event: string) {
Expand Down Expand Up @@ -456,47 +447,7 @@ export class TurnosPrestacionesComponent implements OnInit, OnDestroy {
}
}

cargarObraSocial(datos) {
if ((datos.idPrestacion)) {
this.obraSocialPaciente = [];
if (datos.paciente.documento && this.paciente.estado === 'validado') {
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 @@ -262,22 +262,16 @@
</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">
<seleccionar-financiador *ngIf="paciente" [paciente]="paciente"
(setFinanciador)="setFinanciador($event)"></seleccionar-financiador>
</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
9 changes: 7 additions & 2 deletions src/app/components/turnos/citas.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ 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 { InfoAgendaComponent } from './gestor-agendas/info-agenda.component';
import { SeleccionarFinanciadorComponent } from './dar-turnos/seleccionar-financiador.component';

@NgModule({
imports: [
Expand All @@ -37,7 +38,9 @@ import { InfoAgendaComponent } from './gestor-agendas/info-agenda.component';
BotonesAgendaPipe,
BotonesAgendaGeneralPipe,
BotonesTurnosPipe,
InfoAgendaComponent],
InfoAgendaComponent,
SeleccionarFinanciadorComponent
],
exports: [
DarTurnosComponent,
DarSobreturnoComponent,
Expand All @@ -47,7 +50,9 @@ import { InfoAgendaComponent } from './gestor-agendas/info-agenda.component';
BotonesAgendaPipe,
BotonesAgendaGeneralPipe,
BotonesTurnosPipe,
InfoAgendaComponent],
InfoAgendaComponent,
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 @@ -69,7 +66,6 @@ export class DarSobreturnoComponent implements OnChanges {

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

this.carpetaEfector = {
Expand All @@ -85,55 +81,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?.prepaga ?
this.modelo.prepaga = financiador.nombre
:
this.modelo.obraSocial = financiador;
}

// Operaciones con carpetaPaciente
Expand Down Expand Up @@ -189,9 +141,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 @@ -10,23 +10,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 @@ -931,10 +932,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 @@ -947,7 +949,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 @@ -965,7 +967,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
Loading

0 comments on commit c5cefd9

Please sign in to comment.