yinyitong-zhongyuyuan-dll-s.../src/main/resources/templates/department.html

74 lines
3.9 KiB
HTML
Raw Normal View History

2025-03-25 21:00:46 +08:00
<!DOCTYPE html>
2025-03-26 13:23:10 +08:00
<html xmlns:th="http://www.thymeleaf.org" lang="en">
2025-03-25 21:00:46 +08:00
<head>
<meta charset="UTF-8">
2025-05-22 14:39:36 +08:00
<title>门诊缴费凭证T2</title>
2025-03-25 21:00:46 +08:00
</head>
<body>
2025-05-22 14:39:36 +08:00
<div style="font-size: 32px;font-weight: bold;">
<div>
<div style="text-align: center; font-size: 40px; "><span th:text="${hospitalName}"></span>
</div>
<div style="text-align: center; font-size: 28px;"><span>****<span
th:text="${registeTerminalName}"></span>****</span>
</div>
<div style="border-bottom: 1px dashed #000;margin: 3px 0;"></div>
<div style="text-align: center; font-size: 40px; "><span th:text="${registeType}"></span></div>
<div style="border-bottom: 1px dashed #000;margin: 3px 0;"></div>
2025-03-26 13:33:30 +08:00
</div>
2025-03-26 15:09:06 +08:00
<div style="font-size: 35px;word-break: break-all;margin: 10px 20px;">
2025-03-26 14:44:41 +08:00
<div style="display: flex;">
2025-03-26 15:09:06 +08:00
<span style="margin-right: 25px;">姓名:<span th:text="${name}"></span></span>
<span style="margin-right: 25px;">性别:<span th:text="${gender}"></span></span>
<span>年龄:<span th:text="${age}"></span></span>
2025-03-26 13:33:30 +08:00
</div>
2025-03-26 15:09:06 +08:00
<div style="word-break: break-all;margin-top: 10px;">
<span style="margin-right: 25px;" th:if="${outpatientNumber}">
2025-03-26 14:44:41 +08:00
门诊号:<span th:text="${outpatientNumber}"></span></span>
2025-03-26 15:09:06 +08:00
<span th:if="${doctor}">
2025-03-26 14:44:41 +08:00
就诊医生:<span th:text="${doctor}"></span>
</span>
</div>
2025-03-26 15:09:06 +08:00
<div style="margin-top: 10px;" th:if="${department}">就诊科室:<span th:text="${department}"></span>
2025-03-26 13:33:30 +08:00
</div>
</div>
<div style="text-align: center; font-size: 32px;">
-----------------------------------------------------------------------------
</div>
<div style="font-size: 35px; margin: 10px 20px">
2025-03-26 15:09:06 +08:00
<div style="word-break: break-all;">
<span style="margin-right: 25px;">费用总额:<span th:text="${totalFee}"></span></span>
<span>个人支付:<span th:text="${personalPayment}"></span></span>
2025-03-25 22:59:08 +08:00
</div>
2025-05-22 14:39:36 +08:00
<div style="margin-top: 10px;word-break: break-all;">
<span>实收金额:</span><span
th:text="${actualReceiptAmount}"></span></div>
2025-03-26 14:01:23 +08:00
<div style="margin-top: 10px;"><span>实收金额:</span><span th:text="${actualReceiptAmountChinese}"></span></div>
2025-03-26 13:33:30 +08:00
</div>
2025-05-22 14:39:36 +08:00
<div style="border-bottom: 1px dashed #000;margin: 3px 0;"></div>
2025-03-26 13:33:30 +08:00
<div style="margin: 10px 20px">
<table style="width: 100%; table-layout: fixed; border-collapse: collapse;">
<tr style="font-size: 35px;">
<th style="width: 300px;text-align: left;">项目名称</th>
<th style="width: calc(25% - 5px);text-align: center;">数量</th>
<th style="width: calc(25% - 5px);text-align: center;">单价</th>
<th style="width: calc(25% - 5px);text-align: center;">小计</th>
2025-03-25 22:59:08 +08:00
</tr>
2025-03-26 15:09:06 +08:00
<tr style="font-size: 30px;word-break: break-all;" th:each="item : ${items}">
<td style="text-align: left;width: 300px;" th:text="${item.name}"></td>
2025-03-26 13:33:30 +08:00
<td style="text-align: center;" th:text="${item.quantity}"></td>
<td style="text-align: center;" th:text="${item.unitPrice}"></td>
<td style="text-align: center;" th:text="${item.subtotal}"></td>
2025-03-25 22:59:08 +08:00
</tr>
</table>
</div>
2025-05-22 14:39:36 +08:00
<div style="border-bottom: 1px dashed #000;margin-bottom: 3px;"></div>
<div style="margin-left: 35px;font-size: 36px;">终端编号:<span th:text="${terminalNumber}"></span></div>
<div style="margin-left: 35px;font-size: 36px;">打印时间:<span th:text="${printTime}"></span></div>
<div style="margin-left: 35px;font-size: 36px;margin-top: 10px;">
<span>温馨提示:请取走缴费凭证,并妥善保管。如果对缴费存在疑问,请到人工窗口咨询!</span>
2025-03-25 21:00:46 +08:00
</div>
</div>
</body>
</html>