From 0b44f36c83a033290ea50c2fcf377ee2c0445172 Mon Sep 17 00:00:00 2001
From: hongqiwei <1143662660@qq.com>
Date: Wed, 2 Sep 2026 10:39:56 +0800
Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF=E7=A4=BE=E5=9B=A2?=
=?UTF-8?q?=E3=80=81=E5=B7=A5=E4=BC=9A=E6=8A=A5=E9=94=80bug=E6=95=B4?=
=?UTF-8?q?=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../apply/ClubUserJoinApplyController.java | 4 ++
.../zhghh5/club/clubApproval/index.html | 2 +-
.../platform/zhghh5/club/mineclub/index.html | 38 ++++++++++++++++---
.../unionReimburse/apply/index.html | 13 +++++--
.../unionReimburse/collect/index.html | 2 +-
.../unionReimburse/common/unionReimburse.css | 18 +++++++++
.../dayofficework/unionReimburse/info.js | 26 ++++++-------
.../unionReimburse/mine/index.html | 2 +-
.../unionReimburse/review/index.html | 2 +-
9 files changed, 78 insertions(+), 29 deletions(-)
diff --git a/src/main/java/com/budwk/app/zhgh/club/controller/apply/ClubUserJoinApplyController.java b/src/main/java/com/budwk/app/zhgh/club/controller/apply/ClubUserJoinApplyController.java
index 3f15b467..a563d30b 100644
--- a/src/main/java/com/budwk/app/zhgh/club/controller/apply/ClubUserJoinApplyController.java
+++ b/src/main/java/com/budwk/app/zhgh/club/controller/apply/ClubUserJoinApplyController.java
@@ -218,6 +218,10 @@ public class ClubUserJoinApplyController {
}
ProcessInstance processInstance = dao.fetch(ProcessInstance.class, Cnd.where(ProcessInstance::getBusinessNo, "=", userApply.getId()));
+ // 申请记录存在但没有流程实例时,说明用户仅保存了申请草稿,需提示其先到“我的申请”继续提交。
+ if (processInstance == null) {
+ return Result.error(99, "您有该社团的申请记录尚未提交,请到我的申请里查看!");
+ }
if (!List.of(ProcessInstanceStateEnum.REJECT.getCode(), ProcessInstanceStateEnum.FINISHED.getCode()).contains(processInstance.getState())) {
return Result.error(99, "您有该社团的申请记录尚未完成,请到我的申请里查看!");
}
diff --git a/src/main/resources/views/platform/zhghh5/club/clubApproval/index.html b/src/main/resources/views/platform/zhghh5/club/clubApproval/index.html
index e6ac0557..450998b5 100644
--- a/src/main/resources/views/platform/zhghh5/club/clubApproval/index.html
+++ b/src/main/resources/views/platform/zhghh5/club/clubApproval/index.html
@@ -128,7 +128,7 @@ layout("/layouts/platform_h5.html"){