Доработка наблюдения в отчете дежурного
This commit is contained in:
@@ -18,12 +18,12 @@
|
||||
|
||||
<p class="label">Плановые: {{ $planned['count'] }}</p>
|
||||
@foreach ($planned['patients'] as $i => $p)
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}</p>
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">Экстренные: {{ $urgent['count'] }}</p>
|
||||
@foreach ($urgent['patients'] as $i => $p)
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}</p>
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">В отделении состоит: {{ $inDepartment }}</p>
|
||||
@@ -43,7 +43,10 @@
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) {{ $p['diagnosis'] }}.@endif</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">Под наблюдением: {{ $observableCount }}</p>
|
||||
<p class="label">Под наблюдением: {{ $observables['count'] }}</p>
|
||||
@foreach ($observables['patients'] as $i => $p)
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) {{ $p['diagnosis'] }}.@endif<br>@if ($p['observable_reason']) {{ $p['observable_reason'] }}.@endif</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">Летальные исходы: {{ $deceased['count'] > 0 ? '' : 'не было.' }}</p>
|
||||
@foreach ($deceased['patients'] as $i => $p)
|
||||
|
||||
Reference in New Issue
Block a user