Skip to content
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
1 change: 1 addition & 0 deletions src/app/core/mpi/interfaces/IPaciente.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,5 @@ export interface IPacienteBasico {
};
nroCarpeta: string;
}];
cuil?: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ export class PrestacionCrearComponent implements OnInit, OnChanges {
sexo: this.paciente.sexo,
fechaNacimiento: this.paciente.fechaNacimiento,
obraSocial: obraSocialPaciente,
genero: this.paciente.genero
genero: this.paciente.genero,
cuil: this.paciente.cuil ? this.paciente.cuil : null
},
solicitud: {
fecha: this.fecha,
Expand Down
3 changes: 2 additions & 1 deletion src/app/modules/rup/services/prestaciones.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,8 @@ export class PrestacionesService {
genero: paciente.genero,
documento: paciente.documento,
sexo: paciente.sexo,
fechaNacimiento: paciente.fechaNacimiento
fechaNacimiento: paciente.fechaNacimiento,
cuil: paciente.cuil ? paciente.cuil : null
};
if (paciente.obraSocial) {
pacientePrestacion.obraSocial = paciente.obraSocial;
Expand Down