|
|
|
@ -8,7 +8,7 @@
|
|
|
|
<div class="row">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body" style="overflow: auto; padding-bottom: 100px;position: relative;">
|
|
|
|
<div class="card-body" style="overflow: auto;">
|
|
|
|
<div class="mb-3">
|
|
|
|
<div class="mb-3">
|
|
|
|
<form class="form-inline">
|
|
|
|
<form class="form-inline">
|
|
|
|
<select class="form-control mr-1" name="project_id"
|
|
|
|
<select class="form-control mr-1" name="project_id"
|
|
|
|
@ -27,67 +27,68 @@
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!--start print-->
|
|
|
|
<!--start print-->
|
|
|
|
<table class="table table-bordered mb-0 table-datatable">
|
|
|
|
<div style="position: relative;padding-bottom: 100px;">
|
|
|
|
<thead>
|
|
|
|
<table class="table table-bordered mb-0 table-datatable">
|
|
|
|
<tr>
|
|
|
|
<thead>
|
|
|
|
<th class="p-1" style="white-space: nowrap">病区</th>
|
|
|
|
<tr>
|
|
|
|
<th class="p-1" style="white-space: nowrap">护理费用(元)</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">病区</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">手续费0.6%</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">护理费用(元)</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">增值税6%</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">手续费0.6%</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">实际收入(元)</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">增值税6%</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">院方管理费6%</th>
|
|
|
|
<th class="p-1" style="white-space: nowrap">实际收入(元)</th>
|
|
|
|
|
|
|
|
<th class="p-1" style="white-space: nowrap">院方管理费6%</th>
|
|
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
@foreach ($area as $row)
|
|
|
|
@foreach ($area as $row)
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
<td>{{ $row->name }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->order_total }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->shouxufei }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->zengshishui }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->shijishouru }}</td>
|
|
|
|
|
|
|
|
<td>{{ $row->guanlifei }}</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>{{ $row->name }}</td>
|
|
|
|
<td>合计</td>
|
|
|
|
<td>{{ $row->order_total }}</td>
|
|
|
|
<td>{{ $total['order_total'] }}</td>
|
|
|
|
<td>{{ $row->shouxufei }}</td>
|
|
|
|
<td>{{ $total['shouxufei'] }}</td>
|
|
|
|
<td>{{ $row->zengshishui }}</td>
|
|
|
|
<td>{{ $total['zengshishui'] }}</td>
|
|
|
|
<td>{{ $row->shijishouru }}</td>
|
|
|
|
<td>{{ $total['shijishouru'] }}</td>
|
|
|
|
<td>{{ $row->guanlifei }}</td>
|
|
|
|
<td>{{ $total['guanlifei'] }}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>退款</td>
|
|
|
|
<td>合计</td>
|
|
|
|
<td>{{ $refund['order_total'] }}</td>
|
|
|
|
<td>{{ $total['order_total'] }}</td>
|
|
|
|
<td></td>
|
|
|
|
<td>{{ $total['shouxufei'] }}</td>
|
|
|
|
<td></td>
|
|
|
|
<td>{{ $total['zengshishui'] }}</td>
|
|
|
|
<td>{{ $refund['shijishouru'] }}</td>
|
|
|
|
<td>{{ $total['shijishouru'] }}</td>
|
|
|
|
<td>{{ $refund['guanlifei'] }}</td>
|
|
|
|
<td>{{ $total['guanlifei'] }}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td>总计</td>
|
|
|
|
<td>退款</td>
|
|
|
|
<td>{{ $zongji['order_total'] }}</td>
|
|
|
|
<td>{{ $refund['order_total'] }}</td>
|
|
|
|
<td>{{ $zongji['shouxufei'] }}</td>
|
|
|
|
<td></td>
|
|
|
|
<td>{{ $zongji['zengshishui'] }}</td>
|
|
|
|
<td></td>
|
|
|
|
<td>{{ $zongji['shijishouru'] }}</td>
|
|
|
|
<td>{{ $refund['shijishouru'] }}</td>
|
|
|
|
<td>{{ $zongji['guanlifei'] }}</td>
|
|
|
|
<td>{{ $refund['guanlifei'] }}</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
<tr>
|
|
|
|
</table>
|
|
|
|
<td>总计</td>
|
|
|
|
|
|
|
|
<td>{{ $zongji['order_total'] }}</td>
|
|
|
|
|
|
|
|
<td>{{ $zongji['shouxufei'] }}</td>
|
|
|
|
|
|
|
|
<td>{{ $zongji['zengshishui'] }}</td>
|
|
|
|
|
|
|
|
<td>{{ $zongji['shijishouru'] }}</td>
|
|
|
|
|
|
|
|
<td>{{ $zongji['guanlifei'] }}</td>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
|
|
style="text-align: right;line-height: 2;margin-top: 20px;font-weight: 600;position: relative;z-index: 3;">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
江苏天天欣业物业服务有限公司
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="padding-right: 20px;">
|
|
|
|
|
|
|
|
填报人:{{ $admin->name }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<img src="/images/yz.png" alt=""
|
|
|
|
<img src="/images/yz.png" alt=""
|
|
|
|
style="filter: saturate(1);position: absolute;right: 20px; bottom: 20px; width: 154px;">
|
|
|
|
style="filter: saturate(1);position: absolute;right: 20px; bottom: 100px; width: 154px;">
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
|
|
style="text-align: right;line-height: 2;margin-top: 20px;font-weight: 600;position: relative;z-index: 3;">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
江苏天天欣业物业服务有限公司
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style="padding-right: 20px;">
|
|
|
|
|
|
|
|
填报人:{{ $admin->name }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!--end print-->
|
|
|
|
<!--end print-->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|