Skip to content

Commit

Permalink
feat(censos): incorporar los dias de estada en los censos
Browse files Browse the repository at this point in the history
  • Loading branch information
GaboCancellieri authored and liquid36 committed Jul 20, 2020
1 parent d5f9781 commit bab5a20
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<th>Pase de</th>
<th>Egreso</th>
<th>Pase a</th>
<th>Dias Estada</th>
</tr>
</thead>
<tbody>
Expand All @@ -47,6 +48,7 @@
<td>{{censoP.paseDe}}</td>
<td>{{censoP.egreso}}</td>
<td>{{censoP.paseA}}</td>
<td>{{censoP.diasEstada}}</td>
</tr>
</tbody>
</table>
Expand All @@ -64,6 +66,7 @@
<th>Existencia a las 24</th>
<th>Ingresos y egresos</th>
<th>Pacientes Dia</th>
<th>Dias estada</th>
<th>Disponibles</th>
</tr>
</thead>
Expand All @@ -78,6 +81,7 @@
<td>{{censo.existencia24}}</td>
<td>{{censo.ingresoEgresoDia}}</td>
<td>{{censo.pacientesDia}}</td>
<td>{{censo.diasEstada}}</td>
<td>{{censo.disponibles24}}</td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export class CensosDiariosComponent implements OnInit {
existencia24: censoDiario.censo.existenciaALas24,
ingresoEgresoDia: censoDiario.censo.ingresosYEgresos,
pacientesDia: censoDiario.censo.pacientesDia,
diasEstada: censoDiario.censo.diasEstada,
disponibles24: censoDiario.censo.disponibles,
};

Expand All @@ -77,7 +78,8 @@ export class CensosDiariosComponent implements OnInit {
ingreso: actividad.ingreso,
paseDe: actividad.paseDe,
egreso: actividad.egreso,
paseA: actividad.paseA
paseA: actividad.paseA,
diasEstada: actividad.diasEstada
};
if (!movimiento.ingreso && !movimiento.paseDe && !movimiento.egreso && !movimiento.paseA) {
delDiaAnterior = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<th>Existencia a las 24</th>
<th>Ingresos y egresos</th>
<th>Pacientes Dia</th>
<th>Dias Estada</th>
<th>Disponibles</th>
</tr>
</thead>
Expand All @@ -59,6 +60,7 @@
<td>{{censoDiario.censo.existencia24}}</td>
<td>{{censoDiario.censo.ingresoEgresoDia}}</td>
<td>{{censoDiario.censo.pacientesDia}}</td>
<td>{{censoDiario.censo.diasEstada}}</td>
<td>{{censoDiario.censo.disponibles24}}</td>
</tr>
<tr>
Expand All @@ -72,6 +74,7 @@
<td><strong>{{totales.existencia24}}</strong></td>
<td><strong>{{totales.ingresoEgresoDia}}</strong></td>
<td><strong>{{totales.pacientesDia}}</strong></td>
<td><strong>{{totales.diasEstada}}</strong></td>
<td><strong>{{totales.disponibles24}}</strong></td>
</tr>
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class CensosMensualesComponent implements OnInit {
this.totales['ingresoEgresoDia'] += c.censo.ingresosYEgresos;
this.totales['pacientesDia'] += c.censo.pacientesDia;
this.totales['disponibles24'] += c.censo.disponibles;
this.totales['diasEstada'] += c.censo.diasEstada;
this.totales['diasEstada'] = (this.totales['diasEstada'] < c.censo.diasEstada) ? c.censo.diasEstada : this.totales['diasEstada'];

this.censo.push({
censo: {
Expand Down Expand Up @@ -158,7 +158,7 @@ export class CensosMensualesComponent implements OnInit {
this.datosCensoTotal['giroCama'] = giroCama;

let totalEgreso = this.totales.egresosAlta + this.totales.egresosDefuncion;
this.datosCensoTotal['promDiasEstada'] = totalEgreso === 0 ? '0' : (this.totales.diasEstada / totalEgreso).toFixed(2);
this.datosCensoTotal['promDiasEstada'] = (totalEgreso === 0) ? '0' : (this.totales.diasEstada / totalEgreso).toFixed(2);

}

Expand Down

0 comments on commit bab5a20

Please sign in to comment.