From efba97c4559b94f6636796eda0465d4ba3845d87 Mon Sep 17 00:00:00 2001 From: Mariano Andres Botta Date: Mon, 8 Mar 2021 11:37:30 -0300 Subject: [PATCH] fix(rup): registros siempre visibles en ejecucion --- .../rup/components/ejecucion/prestacionEjecucion.component.ts | 4 ++-- src/environments/environment.dev.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts b/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts index 514e99304f..6396fc4d7f 100644 --- a/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts +++ b/src/app/modules/rup/components/ejecucion/prestacionEjecucion.component.ts @@ -75,7 +75,7 @@ export class PrestacionEjecucionComponent implements OnInit, OnDestroy { public conceptoAEliminar: any; // boleean para verificar si estan todos los conceptos colapsados - public collapse = true; + public collapse = false; // boton de volver cuando la ejecucion tiene motivo de internacion. // Por defecto vuelve al mapa de camas @@ -270,7 +270,7 @@ export class PrestacionEjecucionComponent implements OnInit, OnDestroy { mostrarDatosEnEjecucion() { if (this.prestacion) { this.prestacion.ejecucion.registros.forEach(registro => { - this.itemsRegistros[registro.id] = { collapse: true, items: null }; + this.itemsRegistros[registro.id] = { collapse: false, items: null }; }); this.armarRelaciones(this.prestacion.ejecucion.registros); } diff --git a/src/environments/environment.dev.ts b/src/environments/environment.dev.ts index c382149405..e16862706c 100644 --- a/src/environments/environment.dev.ts +++ b/src/environments/environment.dev.ts @@ -4,7 +4,7 @@ import { apiKeys, analytics, hotjar, password_recovery, captcha } from './apiKey export const environment = { production: false, environmentName: 'development', - API: '//localhost:3002/api', + API: 'https://demo.andes.gob.ar/api', WS: '//localhost:3002', APIStatusCheck: false, version: _package.version,