From 30ea302bd35e9a848436fed73391d4a907077110 Mon Sep 17 00:00:00 2001 From: dxfeng Date: Thu, 28 Dec 2023 17:04:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8B=9B=E8=81=98=E6=B5=81=E7=A8=8B=E3=80=81?= =?UTF-8?q?=E5=BA=94=E8=81=98=E8=BF=87=E7=A8=8BBUG=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/InitRecruitDataServiceImpl.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/com/engine/recruit/service/impl/InitRecruitDataServiceImpl.java b/src/com/engine/recruit/service/impl/InitRecruitDataServiceImpl.java index fe74b21..2ab7bd1 100644 --- a/src/com/engine/recruit/service/impl/InitRecruitDataServiceImpl.java +++ b/src/com/engine/recruit/service/impl/InitRecruitDataServiceImpl.java @@ -315,9 +315,9 @@ public class InitRecruitDataServiceImpl extends Service implements InitRecruitDa .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?modeId={modeId}&formId={formId}&type=1&layoutid={layoutid}&{ypz}=$parentid$", "uf_jcl_bs", "笔试安排-新建模板", "ypz")) .build()); - buttonList.add(OperateButtonPo.builder().buttonName("笔试结果登记").buttonAction("openDialog") - .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?modeId={modeId}&formId={formId}&type=1&layoutid={layoutid}&{ypz}=$parentid$", "uf_jcl_bs", "笔试结果-编辑模板", "ypz")) - .build()); + //buttonList.add(OperateButtonPo.builder().buttonName("笔试结果登记").buttonAction("openDialog") + // .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?modeId={modeId}&formId={formId}&type=1&layoutid={layoutid}&{ypz}=$parentid$", "uf_jcl_bs", "笔试结果-编辑模板", "ypz")) + // .build()); buttonList.add(OperateButtonPo.builder().buttonName("安排面试").buttonAction("openDialog") .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?type=1&modeId={modeId}&formId={formId}&{ypz}=$parentid$", "uf_jcl_ms", "", "ypz")) @@ -337,7 +337,7 @@ public class InitRecruitDataServiceImpl extends Service implements InitRecruitDa buttonList.add(OperateButtonPo.builder().buttonName("转为待入职").buttonAction("openDialog") - .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?type=1&modeId={modeId}&formId={formId}&pcid=$parentid$", "uf_jcl_rzgl", "", "")) + .linkUrl(getModeLink("/spa/cube/index.html#/main/cube/card?type=1&modeId={modeId}&formId={formId}&pcid=$parentid$&recordType=pendingEmployment", "uf_jcl_rzgl", "", "")) .build()); buttonList.add(OperateButtonPo.builder().buttonName("转移阶段").buttonAction("openDialog") @@ -427,7 +427,7 @@ public class InitRecruitDataServiceImpl extends Service implements InitRecruitDa String workflowId = ""; int formId = -1; RecordSet rs = new RecordSet(); - rs.executeQuery("select id,formid from workflow_base where workflowname = ? ", workflowName); + rs.executeQuery("select id,formid from workflow_base where workflowname like '" + workflowName + "%'"); if (rs.next()) { workflowId = rs.getString("id"); formId = rs.getInt("formid");