From 0674215b53ea136fe8726965199e0a25d3f201c3 Mon Sep 17 00:00:00 2001 From: Auora <14587305+auoraasd@user.noreply.gitee.com> Date: Wed, 5 Nov 2025 14:09:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=97=A8=E8=AF=8A=E6=8C=82?= =?UTF-8?q?=E5=8F=B7=E5=92=8C=E8=B4=B9=E7=94=A8=E6=94=AF=E4=BB=98=E4=B8=8A?= =?UTF-8?q?=E7=9A=84=E8=B4=B9=E7=94=A8=E6=80=A7=E8=B4=A8=E4=B8=8D=E4=B8=80?= =?UTF-8?q?=E8=87=B4=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=8C=E5=B9=B6=E4=B8=94?= =?UTF-8?q?=E5=B0=86=E8=A7=A3=E5=86=B3=E6=97=A0=E6=B3=95=E6=94=B6=E8=B4=B9?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PaymentReconciliationController.java | 8 ++--- openhis-ui-vue3/index.html | 2 +- .../src/views/charge/cliniccharge/index.vue | 4 +++ .../components/chargeDialog.vue | 31 ++++++++++++++++++- .../charge/outpatientregistration/index.vue | 10 ++++-- 5 files changed, 47 insertions(+), 8 deletions(-) diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/paymentmanage/controller/PaymentReconciliationController.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/paymentmanage/controller/PaymentReconciliationController.java index b97889d7..b77ea789 100644 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/paymentmanage/controller/PaymentReconciliationController.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/paymentmanage/controller/PaymentReconciliationController.java @@ -172,13 +172,13 @@ public class PaymentReconciliationController { /** * 挂号收费(挂号收费先医保挂号,收费成功后再本系统挂号) * - * @param outpatientRegistrationAddParam 挂号信息 + * @param outpatientRegistrationSettleParam 挂号信息 * @return 操做结果 */ @PostMapping("/reg-pay") - public R regPay(@Valid @RequestBody OutpatientRegistrationSettleParam outpatientRegistrationAddParam) { - R result = paymentReconciliationService.regPay(outpatientRegistrationAddParam, - outpatientRegistrationAddParam.getChrgBchno(), outpatientRegistrationAddParam.getPaymentDetails()); + public R regPay(@Valid @RequestBody OutpatientRegistrationSettleParam outpatientRegistrationSettleParam) { + R result = paymentReconciliationService.regPay(outpatientRegistrationSettleParam, + outpatientRegistrationSettleParam.getChrgBchno(), outpatientRegistrationSettleParam.getPaymentDetails()); // 付款成功后,开具发票 if (result.getCode() == 200) { PaymentReconciliation paymentRecon = null; diff --git a/openhis-ui-vue3/index.html b/openhis-ui-vue3/index.html index 02154634..4406ebfd 100644 --- a/openhis-ui-vue3/index.html +++ b/openhis-ui-vue3/index.html @@ -9,7 +9,7 @@ content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> - + 医院信息管理系统