|
|
|
@ -23,6 +23,7 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th>订单编号</th>
|
|
|
|
<th>订单编号</th>
|
|
|
|
<th>所属项目/医院</th>
|
|
|
|
<th>所属项目/医院</th>
|
|
|
|
|
|
|
|
<th>所在病区</th>
|
|
|
|
<th>客户姓名</th>
|
|
|
|
<th>客户姓名</th>
|
|
|
|
<th>联系电话</th>
|
|
|
|
<th>联系电话</th>
|
|
|
|
<th>被护理人</th>
|
|
|
|
<th>被护理人</th>
|
|
|
|
@ -39,6 +40,7 @@
|
|
|
|
{{ $row->serial }}
|
|
|
|
{{ $row->serial }}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>{{ $row->project->name }}</td>
|
|
|
|
<td>{{ $row->project->name }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->bed->area->name }}</td>
|
|
|
|
<td>{{ $row->customer->name ?: $row->patient->name }}</td>
|
|
|
|
<td>{{ $row->customer->name ?: $row->patient->name }}</td>
|
|
|
|
<td>{{ $row->customer->mobile }}</td>
|
|
|
|
<td>{{ $row->customer->mobile }}</td>
|
|
|
|
<td>{{ $row->patient->name }}</td>
|
|
|
|
<td>{{ $row->patient->name }}</td>
|
|
|
|
@ -56,7 +58,6 @@
|
|
|
|
<table class="table table-striped mb-0 border-0">
|
|
|
|
<table class="table table-striped mb-0 border-0">
|
|
|
|
<thead>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th>所在病区</th>
|
|
|
|
|
|
|
|
<th>所在床位</th>
|
|
|
|
<th>所在床位</th>
|
|
|
|
<th>护理日期</th>
|
|
|
|
<th>护理日期</th>
|
|
|
|
<th>护工</th>
|
|
|
|
<th>护工</th>
|
|
|
|
@ -66,7 +67,6 @@
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
@foreach($row->orderItems as $item)
|
|
|
|
@foreach($row->orderItems as $item)
|
|
|
|
<tr data-id="{{ $item->id }}" data-item-id="{{ $item->id }}">
|
|
|
|
<tr data-id="{{ $item->id }}" data-item-id="{{ $item->id }}">
|
|
|
|
<td>{{ $item->bed->area->name }}</td>
|
|
|
|
|
|
|
|
<td>{{ $item->building->name }}-{{ $item->room->name }}
|
|
|
|
<td>{{ $item->building->name }}-{{ $item->room->name }}
|
|
|
|
-{{ $item->bed->name }}床
|
|
|
|
-{{ $item->bed->name }}床
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
|