diff --git a/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.html b/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.html index 56511e81eb..4011846d08 100644 --- a/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.html +++ b/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.html @@ -1,7 +1,7 @@ - + - + Respirador - @@ -88,17 +87,17 @@
- + - + - NUEVO REGISTRO + NUEVO REGISTRO
@@ -109,7 +108,7 @@
- + diff --git a/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.ts b/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.ts index 4d5da83081..38a53d6195 100644 --- a/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.ts +++ b/src/app/apps/rup/mapa-camas/sidebar/cama-detalle/cama-detalle.component.ts @@ -244,6 +244,6 @@ export class CamaDetalleComponent implements OnInit { } registraRespirador(respirador) { - return respirador?.fechaDesde; + return respirador?.fechaDesde && !respirador.fechaHasta; } } diff --git a/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.component.ts b/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.component.ts deleted file mode 100644 index ff76fcb519..0000000000 --- a/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.component.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { RUPComponent } from './../core/rup.component'; -import { RupElement } from '.'; - -@Component({ - selector: 'rup-destete-ventilacion-mecanica', - templateUrl: 'desteteVentilacionMecanica.html' -}) -@RupElement('DesteteVentilacionMecanicaComponent') -export class DesteteVentilacionMecanicaComponent extends RUPComponent implements OnInit { - public hoy = new Date(); - public fechaDestete: Date; - - ngOnInit() { - this.fechaDestete = this.registro?.valor?.fecha || null; - } - - changeValue() { - this.registro.valor = { fecha : this.fechaDestete }; - } -} diff --git a/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.html b/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.html deleted file mode 100644 index b4317a2380..0000000000 --- a/src/app/modules/rup/components/elementos/desteteVentilacionMecanica.html +++ /dev/null @@ -1,9 +0,0 @@ - - - - -

- Fecha hasta:   {{ registro.valor.fecha | date:'dd/MM/yyyy HH:mm' }} -

-
\ No newline at end of file diff --git a/src/app/modules/rup/components/elementos/respiracionAsistida.component.ts b/src/app/modules/rup/components/elementos/respiracionAsistida.component.ts deleted file mode 100644 index 4640b6251f..0000000000 --- a/src/app/modules/rup/components/elementos/respiracionAsistida.component.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { RUPComponent } from './../core/rup.component'; -import { RupElement } from '.'; - -@Component({ - selector: 'rup-respiracion-asistida', - templateUrl: 'respiracionAsistida.html' -}) -@RupElement('RespiracionAsistidaComponent') -export class RespiracionAsistidaComponent extends RUPComponent implements OnInit { - public dispositivos = []; - public hoy = new Date(); - public respirador: { - dispositivo: any; - fechaDesde: Date; - }; - - ngOnInit() { - this.dispositivoService.search().subscribe(disp => this.dispositivos = disp); - this.respirador = this.registro.valor || { dispositivo: null, fechaDesde: null}; - } - - setValues() { - this.registro.valor = { - dispositivo: this.respirador.dispositivo, - fechaDesde: this.respirador.fechaDesde - }; - } -} diff --git a/src/app/modules/rup/components/elementos/respiracionAsistida.html b/src/app/modules/rup/components/elementos/respiracionAsistida.html deleted file mode 100644 index e9c459f54b..0000000000 --- a/src/app/modules/rup/components/elementos/respiracionAsistida.html +++ /dev/null @@ -1,17 +0,0 @@ -
- - - - - - -

- Dispositivo:   {{ registro.valor.dispositivo.descripcion }} -

-

- Fecha desde:   {{ registro.valor.fechaDesde | date:'dd/MM/yyyy HH:mm' }} -

-
-
\ No newline at end of file diff --git a/src/app/modules/rup/elementos-rup.module.ts b/src/app/modules/rup/elementos-rup.module.ts index aed2475e6d..6337e3987f 100644 --- a/src/app/modules/rup/elementos-rup.module.ts +++ b/src/app/modules/rup/elementos-rup.module.ts @@ -71,8 +71,6 @@ import { VistaPrestacionComponent } from './components/huds/vistaPrestacion'; import { ElementoRUPByIdPipes } from './pipes/elemento-rup-id.pipes'; import { SemanticClassPipe } from './pipes/semantic-class.pipes'; import { SemanticIconPipe } from './pipes/semantic-icon.pipes'; -import { RespiracionAsistidaComponent } from './components/elementos/respiracionAsistida.component'; -import { DesteteVentilacionMecanicaComponent } from './components/elementos/desteteVentilacionMecanica.component'; const RUPComponentsArray = [ @@ -127,9 +125,7 @@ const RUPComponentsArray = [ InternacionIngresoComponent, ChecklistComponent, VacunasComponent, - SolicitudPrescripcionMedicamentoComponent, - RespiracionAsistidaComponent, - DesteteVentilacionMecanicaComponent + SolicitudPrescripcionMedicamentoComponent ]; @NgModule({