feat:新增门诊缴费-T2和优化老模板
This commit is contained in:
parent
0b9d16befc
commit
4fbc844ddd
|
@ -20,8 +20,12 @@ public enum ReceiptTemplateEnum {
|
|||
/**
|
||||
* 门诊缴费的模板
|
||||
*/
|
||||
OUTPATIENT_PAYMENT("3", "outpatientPayment", "门诊缴费的小票"),
|
||||
OUTPATIENT_T1("3", "outpatientPayment", "门诊缴费的小票-T1"),
|
||||
|
||||
/**
|
||||
* 门诊缴费的模板
|
||||
*/
|
||||
OUTPATIENT_T2("4", "department", "门诊缴费的小票-T2"),
|
||||
|
||||
;
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>门诊缴费凭证</title>
|
||||
</head>
|
||||
<body>
|
||||
<div style="font-weight: 700;">
|
||||
<div style="text-align: center;margin-top: 40px;">
|
||||
<div><span style="font-size: 28px;">******<span th:text="${hospitalName}"></span>******</span></div>
|
||||
<div style="font-size: 38px; margin-top: 20px;"><span th:text="${registeTerminalName}"></span></div>
|
||||
<div style="font-size: 38px; margin-top: 10px;"><span th:text="${registeType}"></span></div>
|
||||
</div>
|
||||
<div style="text-align: center; font-weight: 700; font-size: 32px;">-----------------------------------------------------------------------------</div>
|
||||
<div style="margin-left: 20px; font-size: 35px; margin-bottom: 10px; display: flex">
|
||||
<div style="flex: 1; margin-top: 10px; ">
|
||||
姓名:<span style="margin-right: 40px;" th:text="${name}"></span>
|
||||
性别:<span style="margin-right: 40px;" th:text="${gender}"></span>
|
||||
年龄:<span style="margin-right: 40px;" th:text="${age}"></span>
|
||||
</div>
|
||||
<div th:if="${outpatientNumber}" style="flex: 1; margin-top: 10px; margin-right: 15px;">门诊号:<span th:text="${outpatientNumber}"></span></div>
|
||||
<div th:if="${doctor}" style="flex: 1; margin-top: 10px; margin-right: 15px;">就诊医生:<span th:text="${doctor}"></span></div>
|
||||
<div th:if="${department}" style="flex: 1; margin-top: 10px;">就诊科室:<span th:text="${department}"></span></div>
|
||||
</div>
|
||||
<div style="text-align: center; font-weight: 700; font-size: 32px;">-----------------------------------------------------------------------------</div>
|
||||
<div style="margin-left: 20px; font-size: 35px; margin-bottom: 20px; ">
|
||||
<div style="margin-top: 20px; ">费用总额:<span style="margin-right: 30px;" th:text="${totalFee}"></span> 个人支付:<span th:text="${personalPayment}"></span></div>
|
||||
<div style="margin-top: 10px;">实收金额:<span style="font-weight: 700;" th:text="${actualReceiptAmount}"></span></div>
|
||||
<div style="margin-top: 10px;">实收金额:<span style="font-weight: 700;" th:text="${actualReceiptAmountChinese}"></span></div>
|
||||
</div>
|
||||
<div style="text-align: center; font-weight: 700; font-size: 32px;">-----------------------------------------------------------------------------</div>
|
||||
<div style="margin-left: 20px; margin-top: 10px; ">
|
||||
<table border="0" style="font-size: 30px;">
|
||||
<tr style="font-size: 34px; ">
|
||||
<th >项目名称</th>
|
||||
<th >数量</th>
|
||||
<th >单价</th>
|
||||
<th >小计</th>
|
||||
</tr>
|
||||
<tr th:each="item : ${items}" style="height: 50px;">
|
||||
<td style=" width: 310px; word-break: break-all;" th:text="${item.name}"></td>
|
||||
<td th:text="${item.quantity}"></td>
|
||||
<td th:text="${item.unitPrice}"></td>
|
||||
<td th:text="${item.subtotal}"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div style="text-align: center; font-weight: 700; font-size: 32px;">-----------------------------------------------------------------------------</div>
|
||||
<div style="margin-left: 20px; font-weight: 700; font-size: 35px;">
|
||||
<div>终端编号:<span th:text="${terminalNumber}"></span></div>
|
||||
<div>打印时间:<span th:text="${printTime}"></span></div>
|
||||
</div>
|
||||
<div style="margin-left: 20px; font-size: 35px; font-weight: 700; margin-top: 20px;">
|
||||
<span style="margin-top: 20px;">温馨提示</span><br>
|
||||
<span>1.请取走全部凭条、并妥善保管</span><br>
|
||||
<span>2.如果对缴费结算存在疑问,请到人工窗口咨询</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -22,7 +22,7 @@
|
|||
<div style="margin-left: 35px;">交易流水:<span style="font-size: 35px;" th:text="${transactionNumber}"></span></div>
|
||||
</div>
|
||||
<div style="font-weight: 700; margin-top: 8px;">
|
||||
<!-- <div style="margin-top: -40px; text-align: center; ">-----------------------------------------------------------------------------</div>-->
|
||||
<!-- <div style="margin-top: -40px; text-align: center; ">-----------------------------------------------------------------------------</div>-->
|
||||
<div style="font-size: 36px;margin-left: 35px; ">备注:缴费凭证,请妥善保管!</div>
|
||||
<div style="font-size: 36px;margin-left: 35px;">终 端 号:<span th:text="${terminalNumber}"></span></div>
|
||||
<div style="font-size: 36px;margin-left: 35px;">打印时间:<span th:text="${printTime}"></span></div>
|
||||
|
|
|
@ -3,6 +3,23 @@
|
|||
<head>
|
||||
<title>挂号单</title>
|
||||
</head>
|
||||
<style>
|
||||
.x-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.x-start {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.x-end {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.x-bold {
|
||||
font-weight: 700;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div style="font-size: 32px; margin-top: 20px;">
|
||||
<div style="">
|
||||
|
@ -27,9 +44,12 @@
|
|||
<div style="margin-left: 35px;">总 费 用:<span th:text="${totalFee}"></span> 元</div>
|
||||
<div style="margin-left: 35px;">支付方式:<span th:text="${paymentMethod}"></span></div>
|
||||
<!-- <div style="margin-left: 35px;">订 单 号:<span style="font-size: 36px;" th:text="${orderNumber}"></span></div>-->
|
||||
<div style="margin-left: 35px;">交易流水:<span style="font-size: 35px;" th:text="${transactionNumber}"></span></div>
|
||||
<div style="margin-left: 35px;">交易流水:<span style="font-size: 35px;"
|
||||
th:text="${transactionNumber}"></span></div>
|
||||
<div style="width: 100%; text-align: center; margin-bottom: -20px;">
|
||||
<img style="display: inline-block; " th:src="${qrCodeBase64}" alt="QR Code"/>
|
||||
<img style="display: inline-block; "
|
||||
th:src="${qrCodeBase64}"
|
||||
alt="QR Code" />
|
||||
</div>
|
||||
</div>
|
||||
<div style="font-weight: 700; margin-top: 8px;">
|
||||
|
|
Loading…
Reference in New Issue