Skip to content

Commit

Permalink
fix(TOP): arregla duplicidad de estados de nueva solicitud
Browse files Browse the repository at this point in the history
  • Loading branch information
plammel committed Jun 22, 2020
1 parent 9c02464 commit bde5e2b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/components/top/solicitudes/nuevaSolicitud.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ export class NuevaSolicitudComponent implements OnInit {
let regla: any = this.arrayReglasOrigen.find((rule: any) => { return rule.prestacion.conceptId === this.prestacionOrigen.id; });

if (regla.auditable) {
this.modelo.estados.push({ tipo: 'auditoria' });
this.modelo.estados = [{ tipo: 'auditoria' }];
} else {
this.modelo.estados.push({ tipo: 'pendiente' });
this.modelo.estados = [{ tipo: 'pendiente' }];
}
this.modelo.solicitud.tipoPrestacionOrigen = regla.prestacion;
} else {
Expand Down Expand Up @@ -290,9 +290,9 @@ export class NuevaSolicitudComponent implements OnInit {
this.modelo.solicitud.tipoPrestacion = regla.destino.prestacion;
let regla2 = regla.origen.prestaciones.find(rule => { return rule.prestacion.conceptId === this.modelo.solicitud.tipoPrestacionOrigen.conceptId; });
if (regla2.auditable) {
this.modelo.estados.push({ tipo: 'auditoria' });
this.modelo.estados = [{ tipo: 'auditoria' }];
} else {
this.modelo.estados.push({ tipo: 'pendiente' });
this.modelo.estados = [{ tipo: 'pendiente' }];
}
} else if (!this.modelo.solicitud.organizacion) {
this.dataReglasDestino = [];
Expand Down Expand Up @@ -322,7 +322,7 @@ export class NuevaSolicitudComponent implements OnInit {
this.modelo.solicitud.organizacionOrigen = this.modelo.solicitud.organizacion;
this.modelo.solicitud.tipoPrestacionOrigen = this.modelo.solicitud.tipoPrestacion;
// solicitudes autocitadas
this.modelo.estados.push({ tipo: 'pendiente' });
this.modelo.estados = [{ tipo: 'pendiente' }];
}
} else {
this.modelo.solicitud.organizacionOrigen = this.auth.organizacion;
Expand Down

0 comments on commit bde5e2b

Please sign in to comment.