From 208548501db7256ab364f904196f614c4f1a0b40 Mon Sep 17 00:00:00 2001
From: wangting <675591594@qq.com>
Date: 星期一, 29 四月 2024 11:51:14 +0800
Subject: [PATCH] 添加action
---
Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java
index 2d038a1..9937409 100644
--- a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java
+++ b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/other/WorkFlowEndedNotice.java
@@ -46,7 +46,7 @@
String sql = "SELECT T_OID,T_BTWNAME FROM PLATFORMLT_INPUT WHERE F_OID = '" + wfOid + "'";
ClientBusinessObjectOperation operation = new ClientBusinessObjectOperation();
- List<ClientBusinessObject> queryResult = boService.queryBySql(sql, new HashMap<>());
+ List<com.vci.client.bof.ClientBusinessObject> queryResult = boService.queryBySql(sql, new HashMap<>());
if (queryResult.size() == 0) {
logger.info("娌℃湁鎵惧埌涓氬姟鏁版嵁");
return;
@@ -58,15 +58,15 @@
" where wp.OID = '" + oid + "'";
Map<String, String> conditionMap = new HashMap<>();
conditionMap.put("oid", oid);
- List<ClientBusinessObject> codeResult = boService.queryCBO(btmName, conditionMap);
+ List<com.vci.client.bof.ClientBusinessObject> codeResult = boService.queryCBO(btmName, conditionMap);
conditionMap.clear();
conditionMap.put("createCodeOid", codeResult.get(0).getAttributeValue("oid"));
- List<ClientBusinessObject> allCodeList = boService.queryCBO("codeAllCode", conditionMap);
+ List<com.vci.client.bof.ClientBusinessObject> allCodeList = boService.queryCBO("codeAllCode", conditionMap);
if (allCodeList.size() == 0) {
logger.info("娌℃湁鎵惧埌缂栫爜");
return;
}
- for (ClientBusinessObject codeAllCode : allCodeList) {
+ for (com.vci.client.bof.ClientBusinessObject codeAllCode : allCodeList) {
codeAllCode.setLcStatus("Editing");
codeAllCode.setAttributeValue("lcstatus", "Editing");
}
--
Gitblit v1.9.3