From 8312a65f3cf4b7093cc9e641a4a8020877886ba1 Mon Sep 17 00:00:00 2001 From: cwchen <1048842385@qq.com> Date: Fri, 7 Mar 2025 17:43:43 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- greenH5modul/src/com/jysoft/card/service/NewCardService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/greenH5modul/src/com/jysoft/card/service/NewCardService.java b/greenH5modul/src/com/jysoft/card/service/NewCardService.java index 7b6bbaa..1682621 100644 --- a/greenH5modul/src/com/jysoft/card/service/NewCardService.java +++ b/greenH5modul/src/com/jysoft/card/service/NewCardService.java @@ -897,7 +897,7 @@ public class NewCardService { List> auditNodeList = getNextAuditNodeRole(vo); vo.setDescription(auditNodeList.get(0).get("checkName")); String examineBatch = vo.getExamineBatch(); - String nextExamineBatch =String.valueOf(Integer.parseInt(examineBatch)); + String nextExamineBatch =String.valueOf(Integer.parseInt(examineBatch) + 1); // check_operate -1.已无审核节点 0.无操作人员审核 1.代表制卡经办人审核 2.代表制卡经办人抄送 String checkOperate = auditNodeList.get(0).get("checkOperate"); String nextCheckOperate = auditNodeList.get(1).get("checkOperate"); @@ -998,7 +998,7 @@ public class NewCardService { List> auditNodeList = getNextAuditNodeRole(vo); vo.setDescription(auditNodeList.get(0).get("checkName")); String examineBatch = vo.getExamineBatch(); - String nextExamineBatch =String.valueOf(Integer.parseInt(examineBatch)); + String nextExamineBatch =String.valueOf(Integer.parseInt(examineBatch) + 1); // check_operate -1.代表已无审核流程 0.无操作人员审核 1.代表制卡经办人审核 2.代表制卡经办人抄送 String checkOperate = auditNodeList.get(0).get("checkOperate"); String nextCheckOperate = auditNodeList.get(1).get("checkOperate");