Обновление шаблонадежурного
This commit is contained in:
@@ -9,8 +9,7 @@
|
||||
.sub { text-align: center; margin: 0 0 16px; }
|
||||
.label { font-weight: bold; margin: 10px 0 2px; }
|
||||
.patient { margin: 2px 0 2px 12px; }
|
||||
.signature { margin-top: 32px; }
|
||||
.signature p { margin: 12px 0; }
|
||||
.signature { position: absolute }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -19,24 +18,24 @@
|
||||
|
||||
<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</p>
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}</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</p>
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) Д/З: {{ $p['diagnosis'] }}.@endif id = {{ $p['migration_id'] }}</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">В отделении состоит: {{ $inDepartment }}</p>
|
||||
|
||||
<p class="label">Плановых операций: {{ $plannedOperations['count'] }}</p>
|
||||
@foreach ($plannedOperations['patients'] as $p)
|
||||
<p class="patient">{{ $p['full_name'] }} {{ $p['age'] }}.</p>
|
||||
@foreach ($plannedOperations['patients'] as $i => $p)
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">Экстренных операций: {{ $urgentOperations['count'] }}</p>
|
||||
@foreach ($urgentOperations['patients'] as $p)
|
||||
<p class="patient">{{ $p['full_name'] }} {{ $p['age'] }}.</p>
|
||||
@foreach ($urgentOperations['patients'] as $i => $p)
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.</p>
|
||||
@endforeach
|
||||
|
||||
<p class="label">Реанимация: {{ $reanimation['count'] }}</p>
|
||||
@@ -51,9 +50,15 @@
|
||||
<p class="patient">{{ $i + 1 }}. {{ $p['full_name'] }} {{ $p['age'] }}.@if ($p['diagnosis']) {{ $p['diagnosis'] }}.@endif</p>
|
||||
@endforeach
|
||||
|
||||
<div class="signature">
|
||||
<p>Дежурный врач ПДО: _____________</p>
|
||||
<p>Дежурный врач отделения: _____________</p>
|
||||
<div class="signature" style="left: 0; bottom: 30px;">
|
||||
<div>
|
||||
____________________________
|
||||
</div>
|
||||
</div>
|
||||
<div class="signature" style="right: 0; bottom: 30px;">
|
||||
<div>
|
||||
____________________________
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user